androidx.concurrent.futures
Interfaces
Resolver |
This interface should be implemented by the object passed into |
Classes
CallbackToFutureAdapter |
A utility useful for adapting interfaces that take callbacks into interfaces that return . |
Extension functions summary
For com.google.common.util.concurrent.ListenableFuture | |
suspend T |
ListenableFuture<T>.await() Awaits completion of |
Extension functions
await
suspend fun <T> ListenableFuture<T>.await(): T
Awaits completion of this
ListenableFuture without blocking a thread.
This suspend function is cancellable.
If the kotlinx.coroutines.Job of the current coroutine is cancelled or completed while this suspending function is waiting, this function stops waiting for the future and immediately resumes with CancellationException.
This method is intended to be used with one-shot Futures, so on coroutine cancellation, the Future is cancelled as well. If cancelling the given future is undesired, use kotlinx.coroutines.NonCancellable.