|
class | AtomicBoolean |
| Provides a boolean value that may be updated and read atomically. More...
|
|
class | AtomicInteger |
| Simple Atomic abstraction around the integer type to make atomic operations on integer types simpler to manage in code. The default value of this type is zero. More...
|
|
class | AtomicLong |
| Simple Atomic abstraction around the long type to make atomic operations on long types simpler to manage in code. The default value of this type is zero. More...
|
|
class | AtomicReference |
| Provides an object reference that may be updated and read atomically. More...
|
|
class | DefaultEventLoop |
| Default event loop implementation. More...
|
|
interface | IEventLoop |
| Single threaded event processing loop interface. Implementations accept queue'd actions to be processed within the event loop in serial fashion. More...
|
|
interface | IScheduledTask |
| Represents a scheduled item of work that will be run on the event loop either once or on a repeating basis. The task allows for easy cancelation and for asynchronous awaits via the return completion Task. More...
|
|
class | RejectedExecutionException |
| Exception that is thrown when a "Task" or "Action" that is submitted to an executor implementation is rejected for some reason such as capacity limits being hit or the executor being shut down. More...
|
|