Uses of Interface
io.netty5.channel.group.ChannelGroupFuture
-
Packages that use ChannelGroupFuture Package Description io.netty5.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 io.netty5.channel.group
Methods in io.netty5.channel.group that return ChannelGroupFuture Modifier and Type Method Description ChannelGroupFuture
ChannelGroupFuture. addListener(FutureListener<? super Void> listener)
ChannelGroupFuture
ChannelGroup. close()
Closes allChannel
s in this group.ChannelGroupFuture
ChannelGroup. close(ChannelMatcher matcher)
Closes allChannel
s in this group that are matched by the givenChannelMatcher
.ChannelGroupFuture
DefaultChannelGroup. close()
ChannelGroupFuture
DefaultChannelGroup. close(ChannelMatcher matcher)
ChannelGroupFuture
ChannelGroup. deregister()
Deprecated.This method will be removed in the next major feature release.ChannelGroupFuture
ChannelGroup. deregister(ChannelMatcher matcher)
Deprecated.This method will be removed in the next major feature release.ChannelGroupFuture
DefaultChannelGroup. deregister()
ChannelGroupFuture
DefaultChannelGroup. deregister(ChannelMatcher matcher)
ChannelGroupFuture
ChannelGroup. disconnect()
Disconnects allChannel
s in this group from their remote peers.ChannelGroupFuture
ChannelGroup. disconnect(ChannelMatcher matcher)
Disconnects allChannel
s in this group from their remote peers, that are matched by the givenChannelMatcher
.ChannelGroupFuture
DefaultChannelGroup. disconnect()
ChannelGroupFuture
DefaultChannelGroup. disconnect(ChannelMatcher matcher)
ChannelGroupFuture
ChannelGroup. flushAndWrite(Object message)
Deprecated.UseChannelGroup.writeAndFlush(Object)
instead.ChannelGroupFuture
ChannelGroup. flushAndWrite(Object message, ChannelMatcher matcher)
Deprecated.UseChannelGroup.writeAndFlush(Object, ChannelMatcher)
instead.ChannelGroupFuture
DefaultChannelGroup. flushAndWrite(Object message)
ChannelGroupFuture
DefaultChannelGroup. flushAndWrite(Object message, ChannelMatcher matcher)
ChannelGroupFuture
ChannelGroup. newCloseFuture()
Returns theChannelGroupFuture
which will be notified when allChannel
s that are part of thisChannelGroup
, at the time of calling, are closed.ChannelGroupFuture
ChannelGroup. newCloseFuture(ChannelMatcher matcher)
Returns theChannelGroupFuture
which will be notified when allChannel
s that are part of thisChannelGroup
, at the time of calling, are closed.ChannelGroupFuture
DefaultChannelGroup. newCloseFuture()
ChannelGroupFuture
DefaultChannelGroup. newCloseFuture(ChannelMatcher matcher)
ChannelGroupFuture
ChannelGroup. write(Object message)
Writes the specifiedmessage
to allChannel
s in this group.ChannelGroupFuture
ChannelGroup. write(Object message, ChannelMatcher matcher)
Writes the specifiedmessage
to allChannel
s in this group that are matched by the givenChannelMatcher
.ChannelGroupFuture
DefaultChannelGroup. write(Object message)
ChannelGroupFuture
DefaultChannelGroup. write(Object message, ChannelMatcher matcher)
ChannelGroupFuture
ChannelGroup. writeAndFlush(Object message)
Shortcut for callingChannelGroup.write(Object)
andChannelGroup.flush()
.ChannelGroupFuture
ChannelGroup. writeAndFlush(Object message, ChannelMatcher matcher)
Shortcut for callingChannelGroup.write(Object)
andChannelGroup.flush()
and only act onChannel
s that are matched by theChannelMatcher
.ChannelGroupFuture
DefaultChannelGroup. writeAndFlush(Object message)
ChannelGroupFuture
DefaultChannelGroup. writeAndFlush(Object message, ChannelMatcher matcher)
-