| Task<T> |
This class is deprecated.
Task has been deprecated in favor of
ApiFuture.
For every method x() that returns a Task<T>, you should be able to find a
corresponding xAsync() method that returns an ApiFuture<T>.
|
| TaskCompletionSource<T> |
Provides the ability to create an incomplete Task and later complete it by either calling
setResult(T) or setException(Exception). |
| TaskExecutors |
This class is deprecated.
Use the ThreadManager interface to get required Executors.
|
| Tasks |
This class is deprecated.
Use ApiFutures and ThreadManager interface instead.
|