- com.tomasteubner.common.sync - package com.tomasteubner.common.sync
-
This package contains synchronization classes.
- Condition - Class in com.tomasteubner.common.sync
-
A Condition is used to exchange the state of a boolean condition between threads.
- Condition(Mutex) - Constructor for class com.tomasteubner.common.sync.Condition
-
Construct condition with specific mutex.
- Condition() - Constructor for class com.tomasteubner.common.sync.Condition
-
Construct condition with internal mutex.
- conditionNotify() - Method in class com.tomasteubner.common.sync.Condition
-
Notify condition has been met.
- conditionNotifyAll() - Method in class com.tomasteubner.common.sync.Condition
-
Notify all threads that condition has been met.
- conditionWait() - Method in class com.tomasteubner.common.sync.Condition
-
Wait until condition has been met.