Package org.jboss.netty.channel.group
Interface ChannelGroupFutureListener
-
- All Superinterfaces:
java.util.EventListener
public interface ChannelGroupFutureListener extends java.util.EventListenerListens to the result of aChannelGroupFuture. The result of the asynchronousChannelGroupI/O operations is notified once this listener is added by callingChannelGroupFuture.addListener(ChannelGroupFutureListener)and all I/O operations are complete.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidoperationComplete(ChannelGroupFuture future)Invoked when all I/O operations associated with theChannelGroupFuturehave been completed.
-
-
-
Method Detail
-
operationComplete
void operationComplete(ChannelGroupFuture future) throws java.lang.Exception
Invoked when all I/O operations associated with theChannelGroupFuturehave been completed.- Parameters:
future- The sourceChannelGroupFuturewhich called this callback.- Throws:
java.lang.Exception
-
-