com.koushikdutta.async.future
Interface FutureCallback<T>
- All Known Implementing Classes:
- TransformFuture
public interface FutureCallback<T>
Created by koush on 5/20/13.
|
Method Summary |
void |
onCompleted(java.lang.Exception e,
T result)
onCompleted is called by the Future with the result or exception of the asynchronous operation. |
onCompleted
void onCompleted(java.lang.Exception e,
T result)
- onCompleted is called by the Future with the result or exception of the asynchronous operation.
- Parameters:
e - Exception encountered by the operationresult - Result returned from the operation