| Interface | Description |
|---|---|
| Continuation<TTaskResult,TContinuationResult> |
A function to be called after a task completes.
|
| Class | Description |
|---|---|
| CancellationToken |
Propagates notification that operations should be canceled.
|
| CancellationTokenRegistration |
Represents a callback delegate that has been registered with a
CancellationToken. |
| CancellationTokenSource |
Signals to a
CancellationToken that it should be canceled. |
| Capture<T> |
Provides a class that can be used for capturing variables in an anonymous class implementation.
|
| Task<TResult> |
Represents the result of an asynchronous operation.
|
| TaskCompletionSource<TResult> |
Allows safe orchestration of a task's completion, preventing the consumer from prematurely
completing the task.
|
| Exception | Description |
|---|---|
| AggregateException |
Aggregates multiple
Throwables that may be thrown in the process of a task's execution. |