Package com.oracle.coherence.concurrent
Coherence Concurrent utilities based on java.util.concurrent.
- Since:
- 21.12
-
Interface Summary Interface Description CountDownLatch Semaphore -
Class Summary Class Description Latches Factory methods for various distributed countdown latch implementations.LocalCountDownLatch Local implementation ofCountDownLatch
interface, that simply wrapsjava.util.concurrent.CountDownLatch
instance.LocalSemaphore Local implementation ofSemaphore
interface, that simply wrapsjava.util.concurrent.Semaphore
instance.PermitAcquirer The identity of a acquirer, represented by the UUID of the member, and the ID of a thread holding or attempting to acquire permit.RemoteCountDownLatch A distributed count down latch with the same basic behavior and semantics as the JavaCountDownLatch
class, but uses theNamedCache
to support for synchronization aid that allows one or more threads across multiple cluster members to wait until a set of operations being performed in other threads/members completes.RemoteSemaphore A distributed counting semaphore.Semaphores Factory methods for local and remote semaphore implementations.