Top Description Methods
io.netty.util.concurrent

public Interface FutureListener<V>

extends GenericFutureListener<Future<V>>
Known Direct Implementers
io.netty.util.concurrent.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

Inherited from io.netty.util.concurrent.GenericFutureListener:
operationComplete