Package com.google.api.core
Interface ApiFuture<V>
-
- All Superinterfaces:
Future<V>
- All Known Implementing Classes:
AbstractApiFuture
,ForwardingApiFuture
,ListenableFutureToApiFuture
,SettableApiFuture
public interface ApiFuture<V> extends Future<V>
A Future that can have a listener added.Similar to Guava's
ListenableFuture
, but redeclared so that Guava could be shaded.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addListener(Runnable listener, Executor executor)
-