| Class | Description |
|---|---|
| Composable<T> |
Abstract base class for components designed to provide a succinct API for working with future values.
|
| Deferred<T,C extends Composable<T>> |
A Deferred is used to provide a separate between supplying values and consuming values.
|
| Promise<T> |
A
Promise is a stateful event processor that accepts a single value or error. |
| Stream<T> |
A
Stream is a stateless event processor that provides methods for attaching Consumers to consume the values passing through the stream. |