| Package | Description |
|---|---|
| io.netty.channel.group |
A channel registry which helps a user maintain the list of open
Channels and perform bulk operations on them. |
| Modifier and Type | Method and Description |
|---|---|
ChannelGroupFuture |
ChannelGroupFuture.addListener(io.netty.util.concurrent.GenericFutureListener<? extends io.netty.util.concurrent.Future<? super Void>> listener) |
ChannelGroupFuture |
ChannelGroupFuture.addListeners(io.netty.util.concurrent.GenericFutureListener<? extends io.netty.util.concurrent.Future<? super Void>>... listeners) |
ChannelGroupFuture |
ChannelGroupFuture.await() |
ChannelGroupFuture |
ChannelGroupFuture.awaitUninterruptibly() |
ChannelGroupFuture |
DefaultChannelGroup.close() |
ChannelGroupFuture |
ChannelGroup.close()
Closes all
Channels in this group. |
ChannelGroupFuture |
DefaultChannelGroup.close(ChannelMatcher matcher) |
ChannelGroupFuture |
ChannelGroup.close(ChannelMatcher matcher)
Closes all
Channels in this group that match the given ChannelMatcher. |
ChannelGroupFuture |
DefaultChannelGroup.deregister() |
ChannelGroupFuture |
ChannelGroup.deregister()
|
ChannelGroupFuture |
DefaultChannelGroup.deregister(ChannelMatcher matcher) |
ChannelGroupFuture |
ChannelGroup.deregister(ChannelMatcher matcher)
|
ChannelGroupFuture |
DefaultChannelGroup.disconnect() |
ChannelGroupFuture |
ChannelGroup.disconnect()
Disconnects all
Channels in this group from their remote peers. |
ChannelGroupFuture |
DefaultChannelGroup.disconnect(ChannelMatcher matcher) |
ChannelGroupFuture |
ChannelGroup.disconnect(ChannelMatcher matcher)
Disconnects all
Channels in this group from their remote peers,
that match the given ChannelMatcher. |
ChannelGroupFuture |
DefaultChannelGroup.flushAndWrite(Object message) |
ChannelGroupFuture |
ChannelGroup.flushAndWrite(Object message)
Shortcut for calling
ChannelGroup.write(Object) and ChannelGroup.flush(). |
ChannelGroupFuture |
DefaultChannelGroup.flushAndWrite(Object message,
ChannelMatcher matcher) |
ChannelGroupFuture |
ChannelGroup.flushAndWrite(Object message,
ChannelMatcher matcher)
Shortcut for calling
ChannelGroup.write(Object) and ChannelGroup.flush() and only act on
Channels that match the ChannelMatcher. |
ChannelGroupFuture |
ChannelGroupFuture.removeListener(io.netty.util.concurrent.GenericFutureListener<? extends io.netty.util.concurrent.Future<? super Void>> listener) |
ChannelGroupFuture |
ChannelGroupFuture.removeListeners(io.netty.util.concurrent.GenericFutureListener<? extends io.netty.util.concurrent.Future<? super Void>>... listeners) |
ChannelGroupFuture |
ChannelGroupFuture.sync() |
ChannelGroupFuture |
ChannelGroupFuture.syncUninterruptibly() |
ChannelGroupFuture |
DefaultChannelGroup.write(Object message) |
ChannelGroupFuture |
ChannelGroup.write(Object message)
Writes the specified
message to all Channels in this
group. |
ChannelGroupFuture |
DefaultChannelGroup.write(Object message,
ChannelMatcher matcher) |
ChannelGroupFuture |
ChannelGroup.write(Object message,
ChannelMatcher matcher)
|
Copyright © 2008–2013 The Netty Project. All rights reserved.