| 
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
@Beta public interface FutureCallback<V>
A callback for accepting the results of a Future
 computation asynchronously.
 
To attach to a ListenableFuture use Futures.addCallback(com.google.common.util.concurrent.ListenableFuture.
| Method Summary | |
|---|---|
 void | 
onFailure(Throwable t)
Invoked when a Future computation fails or is canceled. | 
 void | 
onSuccess(V result)
Invoked with the result of the Future computation when it is
 successful. | 
| Method Detail | 
|---|
void onSuccess(V result)
Future computation when it is
 successful.
void onFailure(Throwable t)
Future computation fails or is canceled.
 If the future's get method throws an ExecutionException, then the cause is passed to this method. Any other
 thrown object is passed unaltered.
  | 
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||