Uses of Interface
io.netty.channel.group.ChannelGroupFuture
Packages that use ChannelGroupFuture
Package
Description
A channel registry which helps a user maintain the list of open
Channels and perform bulk operations on them.-
Uses of ChannelGroupFuture in io.netty.channel.group
Subinterfaces with type arguments of type ChannelGroupFuture in io.netty.channel.groupMethods in io.netty.channel.group that return ChannelGroupFutureModifier and TypeMethodDescriptionChannelGroupFuture.addListener(GenericFutureListener<? extends Future<? super Void>> listener) ChannelGroupFuture.addListeners(GenericFutureListener<? extends Future<? super Void>>... listeners) ChannelGroupFuture.await()ChannelGroupFuture.awaitUninterruptibly()ChannelGroup.close()Closes allChannels in this group.ChannelGroup.close(ChannelMatcher matcher) Closes allChannels in this group that are matched by the givenChannelMatcher.DefaultChannelGroup.close()DefaultChannelGroup.close(ChannelMatcher matcher) ChannelGroup.deregister()Deprecated.This method will be removed in the next major feature release.ChannelGroup.deregister(ChannelMatcher matcher) Deprecated.This method will be removed in the next major feature release.DefaultChannelGroup.deregister()DefaultChannelGroup.deregister(ChannelMatcher matcher) ChannelGroup.disconnect()Disconnects allChannels in this group from their remote peers.ChannelGroup.disconnect(ChannelMatcher matcher) Disconnects allChannels in this group from their remote peers, that are matched by the givenChannelMatcher.DefaultChannelGroup.disconnect()DefaultChannelGroup.disconnect(ChannelMatcher matcher) ChannelGroup.flushAndWrite(Object message) Deprecated.UseChannelGroup.writeAndFlush(Object)instead.ChannelGroup.flushAndWrite(Object message, ChannelMatcher matcher) Deprecated.UseChannelGroup.writeAndFlush(Object, ChannelMatcher)instead.DefaultChannelGroup.flushAndWrite(Object message) DefaultChannelGroup.flushAndWrite(Object message, ChannelMatcher matcher) ChannelGroup.newCloseFuture()Returns theChannelGroupFuturewhich will be notified when allChannels that are part of thisChannelGroup, at the time of calling, are closed.ChannelGroup.newCloseFuture(ChannelMatcher matcher) Returns theChannelGroupFuturewhich will be notified when allChannels that are part of thisChannelGroup, at the time of calling, are closed.DefaultChannelGroup.newCloseFuture()DefaultChannelGroup.newCloseFuture(ChannelMatcher matcher) ChannelGroupFuture.removeListener(GenericFutureListener<? extends Future<? super Void>> listener) ChannelGroupFuture.removeListeners(GenericFutureListener<? extends Future<? super Void>>... listeners) ChannelGroupFuture.sync()ChannelGroupFuture.syncUninterruptibly()Writes the specifiedmessageto allChannels in this group.ChannelGroup.write(Object message, ChannelMatcher matcher) Writes the specifiedmessageto allChannels in this group that are matched by the givenChannelMatcher.ChannelGroup.write(Object message, ChannelMatcher matcher, boolean voidPromise) Writes the specifiedmessageto allChannels in this group that are matched by the givenChannelMatcher.DefaultChannelGroup.write(Object message, ChannelMatcher matcher) DefaultChannelGroup.write(Object message, ChannelMatcher matcher, boolean voidPromise) ChannelGroup.writeAndFlush(Object message) Shortcut for callingChannelGroup.write(Object)andChannelGroup.flush().ChannelGroup.writeAndFlush(Object message, ChannelMatcher matcher) Shortcut for callingChannelGroup.write(Object)andChannelGroup.flush()and only act onChannels that are matched by theChannelMatcher.ChannelGroup.writeAndFlush(Object message, ChannelMatcher matcher, boolean voidPromise) Shortcut for callingChannelGroup.write(Object, ChannelMatcher, boolean)andChannelGroup.flush()and only act onChannels that are matched by theChannelMatcher.DefaultChannelGroup.writeAndFlush(Object message) DefaultChannelGroup.writeAndFlush(Object message, ChannelMatcher matcher) DefaultChannelGroup.writeAndFlush(Object message, ChannelMatcher matcher, boolean voidPromise)