Interface FutureListener<V>
- All Superinterfaces:
EventListener, GenericFutureListener<Future<V>>
- All Known Implementing Classes:
UnaryPromiseNotifier
A subtype of
GenericFutureListener that hides type parameter for convenience.
Future f = new DefaultPromise(..);
f.addListener(new FutureListener() {
public void operationComplete(Future f) { .. }
});
-
Method Summary
Methods inherited from interface GenericFutureListener
operationComplete