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 openChannels 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 ChannelGroupFutureChannelGroupFuture. addListener(FutureListener<? super Void> listener)ChannelGroupFutureChannelGroup. close()Closes allChannels in this group.ChannelGroupFutureChannelGroup. close(ChannelMatcher matcher)Closes allChannels in this group that are matched by the givenChannelMatcher.ChannelGroupFutureDefaultChannelGroup. close()ChannelGroupFutureDefaultChannelGroup. close(ChannelMatcher matcher)ChannelGroupFutureChannelGroup. deregister()Deprecated.This method will be removed in the next major feature release.ChannelGroupFutureChannelGroup. deregister(ChannelMatcher matcher)Deprecated.This method will be removed in the next major feature release.ChannelGroupFutureDefaultChannelGroup. deregister()ChannelGroupFutureDefaultChannelGroup. deregister(ChannelMatcher matcher)ChannelGroupFutureChannelGroup. disconnect()Disconnects allChannels in this group from their remote peers.ChannelGroupFutureChannelGroup. disconnect(ChannelMatcher matcher)Disconnects allChannels in this group from their remote peers, that are matched by the givenChannelMatcher.ChannelGroupFutureDefaultChannelGroup. disconnect()ChannelGroupFutureDefaultChannelGroup. disconnect(ChannelMatcher matcher)ChannelGroupFutureChannelGroup. flushAndWrite(Object message)Deprecated.UseChannelGroup.writeAndFlush(Object)instead.ChannelGroupFutureChannelGroup. flushAndWrite(Object message, ChannelMatcher matcher)Deprecated.UseChannelGroup.writeAndFlush(Object, ChannelMatcher)instead.ChannelGroupFutureDefaultChannelGroup. flushAndWrite(Object message)ChannelGroupFutureDefaultChannelGroup. flushAndWrite(Object message, ChannelMatcher matcher)ChannelGroupFutureChannelGroup. newCloseFuture()Returns theChannelGroupFuturewhich will be notified when allChannels that are part of thisChannelGroup, at the time of calling, are closed.ChannelGroupFutureChannelGroup. newCloseFuture(ChannelMatcher matcher)Returns theChannelGroupFuturewhich will be notified when allChannels that are part of thisChannelGroup, at the time of calling, are closed.ChannelGroupFutureDefaultChannelGroup. newCloseFuture()ChannelGroupFutureDefaultChannelGroup. newCloseFuture(ChannelMatcher matcher)ChannelGroupFutureChannelGroup. write(Object message)Writes the specifiedmessageto allChannels in this group.ChannelGroupFutureChannelGroup. write(Object message, ChannelMatcher matcher)Writes the specifiedmessageto allChannels in this group that are matched by the givenChannelMatcher.ChannelGroupFutureDefaultChannelGroup. write(Object message)ChannelGroupFutureDefaultChannelGroup. write(Object message, ChannelMatcher matcher)ChannelGroupFutureChannelGroup. writeAndFlush(Object message)Shortcut for callingChannelGroup.write(Object)andChannelGroup.flush().ChannelGroupFutureChannelGroup. writeAndFlush(Object message, ChannelMatcher matcher)Shortcut for callingChannelGroup.write(Object)andChannelGroup.flush()and only act onChannels that are matched by theChannelMatcher.ChannelGroupFutureDefaultChannelGroup. writeAndFlush(Object message)ChannelGroupFutureDefaultChannelGroup. writeAndFlush(Object message, ChannelMatcher matcher)
-