Uses of Interface
io.netty.channel.group.ChannelGroup
-
Packages that use ChannelGroup Package Description io.netty.channel.group A channel registry which helps a user maintain the list of openChannel
s and perform bulk operations on them. -
-
Uses of ChannelGroup in io.netty.channel.group
Classes in io.netty.channel.group that implement ChannelGroup Modifier and Type Class Description class
DefaultChannelGroup
The defaultChannelGroup
implementation.Fields in io.netty.channel.group declared as ChannelGroup Modifier and Type Field Description private ChannelGroup
DefaultChannelGroupFuture. group
private ChannelGroup
VoidChannelGroupFuture. group
Methods in io.netty.channel.group that return ChannelGroup Modifier and Type Method Description ChannelGroup
ChannelGroup. flush()
Flush allChannel
s in this group.ChannelGroup
ChannelGroup. flush(ChannelMatcher matcher)
Flush allChannel
s in this group that are matched by the givenChannelMatcher
.ChannelGroup
DefaultChannelGroup. flush()
ChannelGroup
DefaultChannelGroup. flush(ChannelMatcher matcher)
ChannelGroup
ChannelGroupFuture. group()
Returns theChannelGroup
which is associated with this future.ChannelGroup
DefaultChannelGroupFuture. group()
ChannelGroup
VoidChannelGroupFuture. group()
Methods in io.netty.channel.group with parameters of type ChannelGroup Modifier and Type Method Description int
DefaultChannelGroup. compareTo(ChannelGroup o)
Constructors in io.netty.channel.group with parameters of type ChannelGroup Constructor Description DefaultChannelGroupFuture(ChannelGroup group, java.util.Collection<ChannelFuture> futures, EventExecutor executor)
Creates a new instance.DefaultChannelGroupFuture(ChannelGroup group, java.util.Map<Channel,ChannelFuture> futures, EventExecutor executor)
VoidChannelGroupFuture(ChannelGroup group)
-