Uses of Interface
org.jboss.netty.channel.group.ChannelGroupFuture
Packages that use ChannelGroupFuture
Package
Description
A channel registry which helps a user maintain the list of open
Channel
s and perform bulk operations on them.-
Uses of ChannelGroupFuture in org.jboss.netty.channel.group
Classes in org.jboss.netty.channel.group that implement ChannelGroupFutureMethods in org.jboss.netty.channel.group that return ChannelGroupFutureModifier and TypeMethodDescriptionChannelGroupFuture.await()
Waits for this future to be completed.DefaultChannelGroupFuture.await()
ChannelGroupFuture.awaitUninterruptibly()
Waits for this future to be completed without interruption.DefaultChannelGroupFuture.awaitUninterruptibly()
ChannelGroup.close()
Closes allChannel
s in this group.DefaultChannelGroup.close()
ChannelGroup.disconnect()
Disconnects allChannel
s in this group from their remote peers.DefaultChannelGroup.disconnect()
ChannelGroup.setInterestOps
(int interestOps) DefaultChannelGroup.setInterestOps
(int interestOps) ChannelGroup.setReadable
(boolean readable) CallsChannel.setReadable(boolean)
for allChannel
s in this group with the specified boolean flag.DefaultChannelGroup.setReadable
(boolean readable) ChannelGroup.unbind()
Unbinds allChannel
s in this group from their local address.DefaultChannelGroup.unbind()
Writes the specifiedmessage
to allChannel
s in this group.ChannelGroup.write
(Object message, SocketAddress remoteAddress) DefaultChannelGroup.write
(Object message, SocketAddress remoteAddress) Methods in org.jboss.netty.channel.group with parameters of type ChannelGroupFutureModifier and TypeMethodDescriptionvoid
ChannelGroupFutureListener.operationComplete
(ChannelGroupFuture future) Invoked when all I/O operations associated with theChannelGroupFuture
have been completed.