Package io.netty.util.concurrent
Interface FutureListener<V>
-
- All Superinterfaces:
java.util.EventListener
,GenericFutureListener<Future<V>>
- All Known Implementing Classes:
UnaryPromiseNotifier
public interface FutureListener<V> extends GenericFutureListener<Future<V>>
A subtype ofGenericFutureListener
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 io.netty.util.concurrent.GenericFutureListener
operationComplete
-
-