Interface FutureListener<V>

All Superinterfaces:
EventListener, GenericFutureListener<Future<V>>
All Known Implementing Classes:
UnaryPromiseNotifier

public interface FutureListener<V> extends GenericFutureListener<Future<V>>
A subtype of GenericFutureListener that hides type parameter for convenience.
Future f = new DefaultPromise(..);
f.addListener(new FutureListener() {
    public void operationComplete(Future f) { .. }
});