pod
concurrent
Utilities for concurrent programming
Classes
Actor | Actor is a worker who processes messages asynchronously. |
ActorPool | Controller for a group of actors which manages their execution using pooled thread resources. |
AtomicBool | AtomicBool is used to manage a boolean variable shared between actor/threads with atomic updates. |
AtomicInt | AtomicInt is used to manage an integer variable shared between actor/threads with atomic updates. |
AtomicRef | AtomicRef is used to manage a object reference shared between actor/threads with atomic updates. |
Future | Future represents the result of an actor's asynchronous computation of a message. |