Package org.jboss.netty.channel.group
Interface ChannelGroupFutureListener
-
- All Superinterfaces:
EventListener
public interface ChannelGroupFutureListener extends EventListener
Listens to the result of aChannelGroupFuture
. The result of the asynchronousChannelGroup
I/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 void
operationComplete(ChannelGroupFuture future)
Invoked when all I/O operations associated with theChannelGroupFuture
have been completed.
-
-
-
Method Detail
-
operationComplete
void operationComplete(ChannelGroupFuture future) throws Exception
Invoked when all I/O operations associated with theChannelGroupFuture
have been completed.- Parameters:
future
- The sourceChannelGroupFuture
which called this callback.- Throws:
Exception
-
-