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 TypeMethodDescriptionvoid
operationComplete
(AsyncFuture<T> future) Invoked when the operation associated with theAsyncFuture
has been completed.
-
Method Details
-
operationComplete
Invoked when the operation associated with theAsyncFuture
has been completed.- Parameters:
future
- the sourceAsyncFuture
which called this callback- Throws:
Exception
-