Interface AsyncFutureListener<T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
An interface (lambda) which is fired upon completion of an
AsyncFuture.-
Method Summary
Modifier and TypeMethodDescriptionvoidoperationComplete(AsyncFuture<T> future) Invoked when the operation associated with theAsyncFuturehas been completed.
-
Method Details
-
operationComplete
Invoked when the operation associated with theAsyncFuturehas been completed.- Parameters:
future- the sourceAsyncFuturewhich called this callback- Throws:
Exception
-