| Class and Description |
|---|
| CheckedFutureException
Wrapper exception is used to convert the checked exception into a runtime exception so it can be thrown by blocking methods like
future.get. |
Future
Future is an abstraction to deal with asynchronicity without having to use callbacks directly or blocking threads. |
| FuturePool
A
FuturePool isolates portions of a Future composition on a separate thread pool. |
| InterruptHandler
Interrupts provide a way to send signals to the current pending
Promise given a Future composition. |
Local
Locals are a mechanism similar to ThreadLocal but for asynchronous computations. |
| Promise
Promise is a Future that provides methods to set its result.
|
| Responder
Callback to be used with future.respond.
|
| TimeoutException
Exception thrown when a blocking operation like future.get times out.
|
| Transformer
Interface to be used by future.transform.
|
Copyright © 2017. All Rights Reserved.