| Interface | Description |
|---|---|
| Async<T> |
Represents an async action that eventually completes with a
Result<T>. |
| AsyncIterator<T> |
An iterator that yields elements asynchronously.
|
| AutoAsync<T> |
To make a type also as an `Async` type.
|
| Class | Description |
|---|---|
| AsyncBundle<T,R> |
Bundles multiple parallel
Async<T> tasks as one Async<R> action. |
| Fiber<T> |
An analogue of java.lang.Thread for async tasks.
|
| FiberLocal<T> |
A fiber-local variable.
|
| Promise<T> |
An implementation of `Async` for result producers.
|