Interface FutureListener<V>

All Superinterfaces:
EventListener, GenericFutureListener<Future<V>>
All Known Implementing Classes:
FixedChannelPool.AcquireListener, FixedChannelPool.AcquireTask, ReferenceCountedOpenSslContext.AsyncPrivateKeyMethod.ResultCallbackListener, 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) { .. }
 });