Uses of Interface
org.jboss.netty.channel.group.ChannelGroupFuture
-
Packages that use ChannelGroupFuture Package Description org.jboss.netty.channel.group A channel registry which helps a user maintain the list of openChannel
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 ChannelGroupFuture Modifier and Type Class Description class
DefaultChannelGroupFuture
The defaultChannelGroupFuture
implementation.Methods in org.jboss.netty.channel.group that return ChannelGroupFuture Modifier and Type Method Description ChannelGroupFuture
ChannelGroupFuture. await()
Waits for this future to be completed.ChannelGroupFuture
DefaultChannelGroupFuture. await()
ChannelGroupFuture
ChannelGroupFuture. awaitUninterruptibly()
Waits for this future to be completed without interruption.ChannelGroupFuture
DefaultChannelGroupFuture. awaitUninterruptibly()
ChannelGroupFuture
ChannelGroup. close()
Closes allChannel
s in this group.ChannelGroupFuture
DefaultChannelGroup. close()
ChannelGroupFuture
ChannelGroup. disconnect()
Disconnects allChannel
s in this group from their remote peers.ChannelGroupFuture
DefaultChannelGroup. disconnect()
ChannelGroupFuture
ChannelGroup. setInterestOps(int interestOps)
ChannelGroupFuture
DefaultChannelGroup. setInterestOps(int interestOps)
ChannelGroupFuture
ChannelGroup. setReadable(boolean readable)
CallsChannel.setReadable(boolean)
for allChannel
s in this group with the specified boolean flag.ChannelGroupFuture
DefaultChannelGroup. setReadable(boolean readable)
ChannelGroupFuture
ChannelGroup. unbind()
Unbinds allChannel
s in this group from their local address.ChannelGroupFuture
DefaultChannelGroup. unbind()
ChannelGroupFuture
ChannelGroup. write(java.lang.Object message)
Writes the specifiedmessage
to allChannel
s in this group.ChannelGroupFuture
ChannelGroup. write(java.lang.Object message, java.net.SocketAddress remoteAddress)
ChannelGroupFuture
DefaultChannelGroup. write(java.lang.Object message)
ChannelGroupFuture
DefaultChannelGroup. write(java.lang.Object message, java.net.SocketAddress remoteAddress)
Methods in org.jboss.netty.channel.group with parameters of type ChannelGroupFuture Modifier and Type Method Description void
ChannelGroupFutureListener. operationComplete(ChannelGroupFuture future)
Invoked when all I/O operations associated with theChannelGroupFuture
have been completed.
-