public interface FutureListener<V> extends GenericFutureListener<Future<V>>
GenericFutureListener that hides type parameter for convenience.
Future f = new DefaultPromise(..);
f.addListener(new FutureListener() {
public void operationComplete(Future f) { .. }
});
operationCompleteCopyright © 2008-2013 The Netty Project. All Rights Reserved.