| Package | Description |
|---|---|
| io.netty.bootstrap |
The helper classes with fluent API which enable an easy implementation of
typical client side and server side channel initialization.
|
| io.netty.channel |
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
|
| io.netty.channel.group |
A channel registry which helps a user maintain the list of open
Channels and perform bulk operations on them. |
| io.netty.channel.socket |
Abstract TCP and UDP socket interfaces which extend the core channel API.
|
| io.netty.channel.socket.aio |
NIO2-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
|
| io.netty.channel.socket.nio |
NIO-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
|
| io.netty.channel.socket.oio |
Old blocking I/O based socket channel API implementation - recommended for
a small number of connections (< 1000).
|
| Modifier and Type | Method and Description |
|---|---|
ChannelFuture |
Bootstrap.bind() |
ChannelFuture |
ServerBootstrap.bind() |
ChannelFuture |
Bootstrap.bind(ChannelFuture future) |
ChannelFuture |
ServerBootstrap.bind(ChannelFuture future) |
ChannelFuture |
Bootstrap.connect() |
ChannelFuture |
Bootstrap.connect(ChannelFuture future) |
| Modifier and Type | Method and Description |
|---|---|
ChannelFuture |
Bootstrap.bind(ChannelFuture future) |
ChannelFuture |
ServerBootstrap.bind(ChannelFuture future) |
ChannelFuture |
Bootstrap.connect(ChannelFuture future) |
| Modifier and Type | Interface and Description |
|---|---|
static interface |
ChannelFuture.Unsafe
A
ChannelFuture which is not allowed to be sent to ChannelPipeline due to
implementation details. |
| Modifier and Type | Class and Description |
|---|---|
class |
CompleteChannelFuture
A skeletal
ChannelFuture implementation which represents a
ChannelFuture which has been completed already. |
class |
DefaultChannelFuture
The default
ChannelFuture implementation. |
class |
FailedChannelFuture
The
CompleteChannelFuture which is failed already. |
class |
SucceededChannelFuture
The
CompleteChannelFuture which is succeeded already. |
class |
VoidChannelFuture |
| Modifier and Type | Method and Description |
|---|---|
ChannelFuture |
VoidChannelFuture.addListener(ChannelFutureListener listener) |
ChannelFuture |
CompleteChannelFuture.addListener(ChannelFutureListener listener) |
ChannelFuture |
DefaultChannelFuture.addListener(ChannelFutureListener listener) |
ChannelFuture |
ChannelFuture.addListener(ChannelFutureListener listener)
Adds the specified listener to this future.
|
ChannelFuture |
VoidChannelFuture.await() |
ChannelFuture |
CompleteChannelFuture.await() |
ChannelFuture |
DefaultChannelFuture.await() |
ChannelFuture |
ChannelFuture.await()
Waits for this future to be completed.
|
ChannelFuture |
VoidChannelFuture.awaitUninterruptibly() |
ChannelFuture |
CompleteChannelFuture.awaitUninterruptibly() |
ChannelFuture |
DefaultChannelFuture.awaitUninterruptibly() |
ChannelFuture |
ChannelFuture.awaitUninterruptibly()
Waits for this future to be completed without
interruption.
|
ChannelFuture |
DefaultChannelPipeline.bind(SocketAddress localAddress) |
ChannelFuture |
AbstractChannel.bind(SocketAddress localAddress) |
ChannelFuture |
ChannelOutboundInvoker.bind(SocketAddress localAddress) |
ChannelFuture |
DefaultChannelPipeline.bind(SocketAddress localAddress,
ChannelFuture future) |
ChannelFuture |
AbstractChannel.bind(SocketAddress localAddress,
ChannelFuture future) |
ChannelFuture |
ChannelOutboundInvoker.bind(SocketAddress localAddress,
ChannelFuture future) |
ChannelFuture |
DefaultChannelPipeline.close() |
ChannelFuture |
AbstractChannel.close() |
ChannelFuture |
ChannelOutboundInvoker.close() |
ChannelFuture |
DefaultChannelPipeline.close(ChannelFuture future) |
ChannelFuture |
AbstractChannel.close(ChannelFuture future) |
ChannelFuture |
ChannelOutboundInvoker.close(ChannelFuture future) |
ChannelFuture |
AbstractChannel.closeFuture() |
ChannelFuture |
Channel.closeFuture()
Returns the
ChannelFuture which will be notified when this
channel is closed. |
ChannelFuture |
DefaultChannelPipeline.connect(SocketAddress remoteAddress) |
ChannelFuture |
AbstractChannel.connect(SocketAddress remoteAddress) |
ChannelFuture |
ChannelOutboundInvoker.connect(SocketAddress remoteAddress) |
ChannelFuture |
DefaultChannelPipeline.connect(SocketAddress remoteAddress,
ChannelFuture future) |
ChannelFuture |
AbstractChannel.connect(SocketAddress remoteAddress,
ChannelFuture future) |
ChannelFuture |
ChannelOutboundInvoker.connect(SocketAddress remoteAddress,
ChannelFuture future) |
ChannelFuture |
DefaultChannelPipeline.connect(SocketAddress remoteAddress,
SocketAddress localAddress) |
ChannelFuture |
AbstractChannel.connect(SocketAddress remoteAddress,
SocketAddress localAddress) |
ChannelFuture |
ChannelOutboundInvoker.connect(SocketAddress remoteAddress,
SocketAddress localAddress) |
ChannelFuture |
DefaultChannelPipeline.connect(SocketAddress remoteAddress,
SocketAddress localAddress,
ChannelFuture future) |
ChannelFuture |
AbstractChannel.connect(SocketAddress remoteAddress,
SocketAddress localAddress,
ChannelFuture future) |
ChannelFuture |
ChannelOutboundInvoker.connect(SocketAddress remoteAddress,
SocketAddress localAddress,
ChannelFuture future) |
ChannelFuture |
DefaultChannelPipeline.deregister() |
ChannelFuture |
AbstractChannel.deregister() |
ChannelFuture |
ChannelOutboundInvoker.deregister() |
ChannelFuture |
DefaultChannelPipeline.deregister(ChannelFuture future) |
ChannelFuture |
AbstractChannel.deregister(ChannelFuture future) |
ChannelFuture |
ChannelOutboundInvoker.deregister(ChannelFuture future) |
ChannelFuture |
DefaultChannelPipeline.disconnect() |
ChannelFuture |
AbstractChannel.disconnect() |
ChannelFuture |
ChannelOutboundInvoker.disconnect() |
ChannelFuture |
DefaultChannelPipeline.disconnect(ChannelFuture future) |
ChannelFuture |
AbstractChannel.disconnect(ChannelFuture future) |
ChannelFuture |
ChannelOutboundInvoker.disconnect(ChannelFuture future) |
ChannelFuture |
DefaultChannelPipeline.flush() |
ChannelFuture |
AbstractChannel.flush() |
ChannelFuture |
ChannelOutboundInvoker.flush() |
ChannelFuture |
DefaultChannelPipeline.flush(ChannelFuture future) |
ChannelFuture |
AbstractChannel.flush(ChannelFuture future) |
ChannelFuture |
ChannelOutboundInvoker.flush(ChannelFuture future) |
ChannelFuture |
AbstractChannel.newFailedFuture(Throwable cause) |
ChannelFuture |
ChannelFutureFactory.newFailedFuture(Throwable cause)
Create a new
ChannelFuture which is marked as fakued already. |
ChannelFuture |
AbstractChannel.newFuture() |
ChannelFuture |
ChannelFutureFactory.newFuture()
Create a new
ChannelFuture |
ChannelFuture |
AbstractChannel.newSucceededFuture() |
ChannelFuture |
ChannelFutureFactory.newSucceededFuture()
Create a new
ChannelFuture which is marked as successes already. |
ChannelFuture |
MultithreadEventLoopGroup.register(Channel channel) |
ChannelFuture |
EventLoopGroup.register(Channel channel)
|
ChannelFuture |
SingleThreadEventLoop.register(Channel channel) |
ChannelFuture |
MultithreadEventLoopGroup.register(Channel channel,
ChannelFuture future) |
ChannelFuture |
EventLoopGroup.register(Channel channel,
ChannelFuture future)
|
ChannelFuture |
SingleThreadEventLoop.register(Channel channel,
ChannelFuture future) |
ChannelFuture |
VoidChannelFuture.removeListener(ChannelFutureListener listener) |
ChannelFuture |
CompleteChannelFuture.removeListener(ChannelFutureListener listener) |
ChannelFuture |
DefaultChannelFuture.removeListener(ChannelFutureListener listener) |
ChannelFuture |
ChannelFuture.removeListener(ChannelFutureListener listener)
Removes the specified listener from this future.
|
ChannelFuture |
VoidChannelFuture.sync() |
ChannelFuture |
SucceededChannelFuture.sync() |
ChannelFuture |
FailedChannelFuture.sync() |
ChannelFuture |
DefaultChannelFuture.sync() |
ChannelFuture |
ChannelFuture.sync()
Waits for this future until it is done, and rethrows the cause of the failure if this future
failed.
|
ChannelFuture |
VoidChannelFuture.syncUninterruptibly() |
ChannelFuture |
SucceededChannelFuture.syncUninterruptibly() |
ChannelFuture |
FailedChannelFuture.syncUninterruptibly() |
ChannelFuture |
DefaultChannelFuture.syncUninterruptibly() |
ChannelFuture |
ChannelFuture.syncUninterruptibly()
Waits for this future until it is done, and rethrows the cause of the failure if this future
failed.
|
ChannelFuture |
AbstractChannel.AbstractUnsafe.voidFuture() |
ChannelFuture |
Channel.Unsafe.voidFuture()
Return a
VoidChannelFuture. |
ChannelFuture |
DefaultChannelPipeline.write(Object message) |
ChannelFuture |
AbstractChannel.write(Object message) |
ChannelFuture |
ChannelOutboundInvoker.write(Object message) |
ChannelFuture |
DefaultChannelPipeline.write(Object message,
ChannelFuture future) |
ChannelFuture |
AbstractChannel.write(Object message,
ChannelFuture future) |
ChannelFuture |
ChannelOutboundInvoker.write(Object message,
ChannelFuture future) |
| Modifier and Type | Method and Description |
|---|---|
void |
ChannelFlushFutureNotifier.addFlushFuture(ChannelFuture future,
int pendingDataSize) |
void |
ChannelFutureAggregator.addFuture(ChannelFuture future) |
void |
ChannelOperationHandler.bind(ChannelHandlerContext ctx,
SocketAddress localAddress,
ChannelFuture future) |
void |
CombinedChannelHandler.bind(ChannelHandlerContext ctx,
SocketAddress localAddress,
ChannelFuture future) |
void |
ChannelHandlerAdapter.bind(ChannelHandlerContext ctx,
SocketAddress localAddress,
ChannelFuture future) |
void |
ChannelOperationHandlerAdapter.bind(ChannelHandlerContext ctx,
SocketAddress localAddress,
ChannelFuture future) |
ChannelFuture |
DefaultChannelPipeline.bind(SocketAddress localAddress,
ChannelFuture future) |
ChannelFuture |
AbstractChannel.bind(SocketAddress localAddress,
ChannelFuture future) |
void |
AbstractChannel.AbstractUnsafe.bind(SocketAddress localAddress,
ChannelFuture future) |
void |
Channel.Unsafe.bind(SocketAddress localAddress,
ChannelFuture future)
|
ChannelFuture |
ChannelOutboundInvoker.bind(SocketAddress localAddress,
ChannelFuture future) |
ChannelFuture |
DefaultChannelPipeline.close(ChannelFuture future) |
ChannelFuture |
AbstractChannel.close(ChannelFuture future) |
void |
AbstractChannel.AbstractUnsafe.close(ChannelFuture future) |
void |
Channel.Unsafe.close(ChannelFuture future)
Close the
Channel of the ChannelFuture and notify the ChannelFuture once the
operation was complete. |
ChannelFuture |
ChannelOutboundInvoker.close(ChannelFuture future) |
void |
ChannelOperationHandler.close(ChannelHandlerContext ctx,
ChannelFuture future) |
void |
CombinedChannelHandler.close(ChannelHandlerContext ctx,
ChannelFuture future) |
void |
ChannelHandlerAdapter.close(ChannelHandlerContext ctx,
ChannelFuture future) |
void |
ChannelOperationHandlerAdapter.close(ChannelHandlerContext ctx,
ChannelFuture future) |
void |
ChannelOperationHandler.connect(ChannelHandlerContext ctx,
SocketAddress remoteAddress,
SocketAddress localAddress,
ChannelFuture future) |
void |
CombinedChannelHandler.connect(ChannelHandlerContext ctx,
SocketAddress remoteAddress,
SocketAddress localAddress,
ChannelFuture future) |
void |
ChannelHandlerAdapter.connect(ChannelHandlerContext ctx,
SocketAddress remoteAddress,
SocketAddress localAddress,
ChannelFuture future) |
void |
ChannelOperationHandlerAdapter.connect(ChannelHandlerContext ctx,
SocketAddress remoteAddress,
SocketAddress localAddress,
ChannelFuture future) |
ChannelFuture |
DefaultChannelPipeline.connect(SocketAddress remoteAddress,
ChannelFuture future) |
ChannelFuture |
AbstractChannel.connect(SocketAddress remoteAddress,
ChannelFuture future) |
ChannelFuture |
ChannelOutboundInvoker.connect(SocketAddress remoteAddress,
ChannelFuture future) |
void |
AbstractServerChannel.AbstractServerUnsafe.connect(SocketAddress remoteAddress,
SocketAddress localAddress,
ChannelFuture future) |
ChannelFuture |
DefaultChannelPipeline.connect(SocketAddress remoteAddress,
SocketAddress localAddress,
ChannelFuture future) |
ChannelFuture |
AbstractChannel.connect(SocketAddress remoteAddress,
SocketAddress localAddress,
ChannelFuture future) |
void |
Channel.Unsafe.connect(SocketAddress remoteAddress,
SocketAddress localAddress,
ChannelFuture future)
|
ChannelFuture |
ChannelOutboundInvoker.connect(SocketAddress remoteAddress,
SocketAddress localAddress,
ChannelFuture future) |
ChannelFuture |
DefaultChannelPipeline.deregister(ChannelFuture future) |
ChannelFuture |
AbstractChannel.deregister(ChannelFuture future) |
void |
AbstractChannel.AbstractUnsafe.deregister(ChannelFuture future) |
void |
Channel.Unsafe.deregister(ChannelFuture future)
Deregister the
Channel of the ChannelFuture from EventLoop and notify the
ChannelFuture once the operation was complete. |
ChannelFuture |
ChannelOutboundInvoker.deregister(ChannelFuture future) |
void |
ChannelOperationHandler.deregister(ChannelHandlerContext ctx,
ChannelFuture future) |
void |
CombinedChannelHandler.deregister(ChannelHandlerContext ctx,
ChannelFuture future) |
void |
ChannelHandlerAdapter.deregister(ChannelHandlerContext ctx,
ChannelFuture future) |
void |
ChannelOperationHandlerAdapter.deregister(ChannelHandlerContext ctx,
ChannelFuture future) |
ChannelFuture |
DefaultChannelPipeline.disconnect(ChannelFuture future) |
ChannelFuture |
AbstractChannel.disconnect(ChannelFuture future) |
void |
AbstractChannel.AbstractUnsafe.disconnect(ChannelFuture future) |
void |
Channel.Unsafe.disconnect(ChannelFuture future)
Disconnect the
Channel of the ChannelFuture and notify the ChannelFuture once the
operation was complete. |
ChannelFuture |
ChannelOutboundInvoker.disconnect(ChannelFuture future) |
void |
ChannelOperationHandler.disconnect(ChannelHandlerContext ctx,
ChannelFuture future) |
void |
CombinedChannelHandler.disconnect(ChannelHandlerContext ctx,
ChannelFuture future) |
void |
ChannelHandlerAdapter.disconnect(ChannelHandlerContext ctx,
ChannelFuture future) |
void |
ChannelOperationHandlerAdapter.disconnect(ChannelHandlerContext ctx,
ChannelFuture future) |
protected boolean |
AbstractChannel.AbstractUnsafe.ensureOpen(ChannelFuture future) |
void |
AbstractServerChannel.AbstractServerUnsafe.flush(ChannelFuture future) |
ChannelFuture |
DefaultChannelPipeline.flush(ChannelFuture future) |
ChannelFuture |
AbstractChannel.flush(ChannelFuture future) |
void |
AbstractChannel.AbstractUnsafe.flush(ChannelFuture future) |
void |
Channel.Unsafe.flush(ChannelFuture future)
Flush out all data that was buffered in the buffer of the
Channel.Unsafe.directOutboundContext() and was not
flushed out yet. |
ChannelFuture |
ChannelOutboundInvoker.flush(ChannelFuture future) |
void |
ChannelOperationHandler.flush(ChannelHandlerContext ctx,
ChannelFuture future) |
void |
CombinedChannelHandler.flush(ChannelHandlerContext ctx,
ChannelFuture future) |
abstract void |
ChannelOutboundHandlerAdapter.flush(ChannelHandlerContext ctx,
ChannelFuture future) |
void |
ChannelHandlerAdapter.flush(ChannelHandlerContext ctx,
ChannelFuture future) |
void |
ChannelOperationHandlerAdapter.flush(ChannelHandlerContext ctx,
ChannelFuture future) |
void |
ChannelFutureAggregator.operationComplete(ChannelFuture future) |
void |
ChannelFutureListener.operationComplete(ChannelFuture future)
Invoked when the I/O operation associated with the
ChannelFuture
has been completed. |
void |
ChannelFutureProgressListener.operationProgressed(ChannelFuture future,
long amount,
long current,
long total)
Invoked when the I/O operation associated with the
ChannelFuture
has been progressed. |
ChannelFuture |
MultithreadEventLoopGroup.register(Channel channel,
ChannelFuture future) |
ChannelFuture |
EventLoopGroup.register(Channel channel,
ChannelFuture future)
|
ChannelFuture |
SingleThreadEventLoop.register(Channel channel,
ChannelFuture future) |
void |
AbstractChannel.AbstractUnsafe.register(EventLoop eventLoop,
ChannelFuture future) |
void |
Channel.Unsafe.register(EventLoop eventLoop,
ChannelFuture future)
Register the
Channel of the ChannelFuture with the EventLoop and notify
the ChannelFuture once the registration was complete. |
ChannelFuture |
DefaultChannelPipeline.write(Object message,
ChannelFuture future) |
ChannelFuture |
AbstractChannel.write(Object message,
ChannelFuture future) |
ChannelFuture |
ChannelOutboundInvoker.write(Object message,
ChannelFuture future) |
| Constructor and Description |
|---|
ChannelFutureAggregator(ChannelFuture aggregateFuture) |
| Modifier and Type | Method and Description |
|---|---|
ChannelFuture |
ChannelGroupFuture.find(Channel channel)
Returns the
ChannelFuture of the individual I/O operation which
is associated with the specified Channel. |
ChannelFuture |
DefaultChannelGroupFuture.find(Channel channel) |
ChannelFuture |
ChannelGroupFuture.find(Integer channelId)
Returns the
ChannelFuture of the individual I/O operation which
is associated with the Channel whose ID matches the specified
integer. |
ChannelFuture |
DefaultChannelGroupFuture.find(Integer channelId) |
| Modifier and Type | Method and Description |
|---|---|
Iterator<ChannelFuture> |
ChannelGroupFuture.iterator()
Returns the
Iterator that enumerates all ChannelFutures
which are associated with this future. |
Iterator<ChannelFuture> |
DefaultChannelGroupFuture.iterator() |
| Constructor and Description |
|---|
DefaultChannelGroupFuture(ChannelGroup group,
Collection<ChannelFuture> futures)
Creates a new instance.
|
| Modifier and Type | Method and Description |
|---|---|
ChannelFuture |
DatagramChannel.block(InetAddress multicastAddress,
InetAddress sourceToBlock)
Block the given sourceToBlock address for the given multicastAddress
|
ChannelFuture |
DatagramChannel.block(InetAddress multicastAddress,
InetAddress sourceToBlock,
ChannelFuture future)
Block the given sourceToBlock address for the given multicastAddress
|
ChannelFuture |
DatagramChannel.block(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress sourceToBlock)
Block the given sourceToBlock address for the given multicastAddress on the given networkInterface
|
ChannelFuture |
DatagramChannel.block(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress sourceToBlock,
ChannelFuture future)
Block the given sourceToBlock address for the given multicastAddress on the given networkInterface
|
ChannelFuture |
DatagramChannel.joinGroup(InetAddress multicastAddress)
Joins a multicast group.
|
ChannelFuture |
DatagramChannel.joinGroup(InetAddress multicastAddress,
ChannelFuture future) |
ChannelFuture |
DatagramChannel.joinGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source) |
ChannelFuture |
DatagramChannel.joinGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source,
ChannelFuture future) |
ChannelFuture |
DatagramChannel.joinGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface)
Joins the specified multicast group at the specified interface.
|
ChannelFuture |
DatagramChannel.joinGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface,
ChannelFuture future) |
ChannelFuture |
DatagramChannel.leaveGroup(InetAddress multicastAddress)
Leaves a multicast group.
|
ChannelFuture |
DatagramChannel.leaveGroup(InetAddress multicastAddress,
ChannelFuture future) |
ChannelFuture |
DatagramChannel.leaveGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source)
Leave the specified multicast group at the specified interface using the specified source.
|
ChannelFuture |
DatagramChannel.leaveGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source,
ChannelFuture future) |
ChannelFuture |
DatagramChannel.leaveGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface)
Leaves a multicast group on a specified local interface.
|
ChannelFuture |
DatagramChannel.leaveGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface,
ChannelFuture future) |
ChannelFuture |
SocketChannel.shutdownOutput() |
| Modifier and Type | Method and Description |
|---|---|
ChannelFuture |
DatagramChannel.block(InetAddress multicastAddress,
InetAddress sourceToBlock,
ChannelFuture future)
Block the given sourceToBlock address for the given multicastAddress
|
ChannelFuture |
DatagramChannel.block(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress sourceToBlock,
ChannelFuture future)
Block the given sourceToBlock address for the given multicastAddress on the given networkInterface
|
ChannelFuture |
DatagramChannel.joinGroup(InetAddress multicastAddress,
ChannelFuture future) |
ChannelFuture |
DatagramChannel.joinGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source,
ChannelFuture future) |
ChannelFuture |
DatagramChannel.joinGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface,
ChannelFuture future) |
ChannelFuture |
DatagramChannel.leaveGroup(InetAddress multicastAddress,
ChannelFuture future) |
ChannelFuture |
DatagramChannel.leaveGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source,
ChannelFuture future) |
ChannelFuture |
DatagramChannel.leaveGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface,
ChannelFuture future) |
| Modifier and Type | Method and Description |
|---|---|
ChannelFuture |
AioSocketChannel.shutdownOutput() |
| Modifier and Type | Method and Description |
|---|---|
protected void |
AioServerSocketChannel.doConnect(SocketAddress remoteAddress,
SocketAddress localAddress,
ChannelFuture future) |
protected void |
AioSocketChannel.doConnect(SocketAddress remoteAddress,
SocketAddress localAddress,
ChannelFuture future) |
| Modifier and Type | Method and Description |
|---|---|
ChannelFuture |
NioDatagramChannel.block(InetAddress multicastAddress,
InetAddress sourceToBlock)
Block the given sourceToBlock address for the given multicastAddress
|
ChannelFuture |
NioDatagramChannel.block(InetAddress multicastAddress,
InetAddress sourceToBlock,
ChannelFuture future)
Block the given sourceToBlock address for the given multicastAddress
|
ChannelFuture |
NioDatagramChannel.block(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress sourceToBlock)
Block the given sourceToBlock address for the given multicastAddress on the given networkInterface
|
ChannelFuture |
NioDatagramChannel.block(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress sourceToBlock,
ChannelFuture future)
Block the given sourceToBlock address for the given multicastAddress on the given networkInterface
|
ChannelFuture |
NioDatagramChannel.joinGroup(InetAddress multicastAddress) |
ChannelFuture |
NioDatagramChannel.joinGroup(InetAddress multicastAddress,
ChannelFuture future) |
ChannelFuture |
NioDatagramChannel.joinGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source) |
ChannelFuture |
NioDatagramChannel.joinGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source,
ChannelFuture future) |
ChannelFuture |
NioDatagramChannel.joinGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface) |
ChannelFuture |
NioDatagramChannel.joinGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface,
ChannelFuture future) |
ChannelFuture |
NioDatagramChannel.leaveGroup(InetAddress multicastAddress) |
ChannelFuture |
NioDatagramChannel.leaveGroup(InetAddress multicastAddress,
ChannelFuture future) |
ChannelFuture |
NioDatagramChannel.leaveGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source) |
ChannelFuture |
NioDatagramChannel.leaveGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source,
ChannelFuture future) |
ChannelFuture |
NioDatagramChannel.leaveGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface) |
ChannelFuture |
NioDatagramChannel.leaveGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface,
ChannelFuture future) |
ChannelFuture |
NioSocketChannel.shutdownOutput() |
| Modifier and Type | Method and Description |
|---|---|
ChannelFuture |
NioDatagramChannel.block(InetAddress multicastAddress,
InetAddress sourceToBlock,
ChannelFuture future)
Block the given sourceToBlock address for the given multicastAddress
|
ChannelFuture |
NioDatagramChannel.block(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress sourceToBlock,
ChannelFuture future)
Block the given sourceToBlock address for the given multicastAddress on the given networkInterface
|
void |
AbstractNioChannel.AbstractNioUnsafe.connect(SocketAddress remoteAddress,
SocketAddress localAddress,
ChannelFuture future) |
ChannelFuture |
NioDatagramChannel.joinGroup(InetAddress multicastAddress,
ChannelFuture future) |
ChannelFuture |
NioDatagramChannel.joinGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source,
ChannelFuture future) |
ChannelFuture |
NioDatagramChannel.joinGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface,
ChannelFuture future) |
ChannelFuture |
NioDatagramChannel.leaveGroup(InetAddress multicastAddress,
ChannelFuture future) |
ChannelFuture |
NioDatagramChannel.leaveGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source,
ChannelFuture future) |
ChannelFuture |
NioDatagramChannel.leaveGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface,
ChannelFuture future) |
| Modifier and Type | Method and Description |
|---|---|
ChannelFuture |
OioDatagramChannel.block(InetAddress multicastAddress,
InetAddress sourceToBlock) |
ChannelFuture |
OioDatagramChannel.block(InetAddress multicastAddress,
InetAddress sourceToBlock,
ChannelFuture future) |
ChannelFuture |
OioDatagramChannel.block(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress sourceToBlock) |
ChannelFuture |
OioDatagramChannel.block(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress sourceToBlock,
ChannelFuture future) |
ChannelFuture |
OioDatagramChannel.joinGroup(InetAddress multicastAddress) |
ChannelFuture |
OioDatagramChannel.joinGroup(InetAddress multicastAddress,
ChannelFuture future) |
ChannelFuture |
OioDatagramChannel.joinGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source) |
ChannelFuture |
OioDatagramChannel.joinGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source,
ChannelFuture future) |
ChannelFuture |
OioDatagramChannel.joinGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface) |
ChannelFuture |
OioDatagramChannel.joinGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface,
ChannelFuture future) |
ChannelFuture |
OioDatagramChannel.leaveGroup(InetAddress multicastAddress) |
ChannelFuture |
OioDatagramChannel.leaveGroup(InetAddress multicastAddress,
ChannelFuture future) |
ChannelFuture |
OioDatagramChannel.leaveGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source) |
ChannelFuture |
OioDatagramChannel.leaveGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source,
ChannelFuture future) |
ChannelFuture |
OioDatagramChannel.leaveGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface) |
ChannelFuture |
OioDatagramChannel.leaveGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface,
ChannelFuture future) |
ChannelFuture |
OioEventLoopGroup.register(Channel channel) |
ChannelFuture |
OioEventLoopGroup.register(Channel channel,
ChannelFuture future) |
ChannelFuture |
OioSocketChannel.shutdownOutput() |
| Modifier and Type | Method and Description |
|---|---|
ChannelFuture |
OioDatagramChannel.block(InetAddress multicastAddress,
InetAddress sourceToBlock,
ChannelFuture future) |
ChannelFuture |
OioDatagramChannel.block(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress sourceToBlock,
ChannelFuture future) |
ChannelFuture |
OioDatagramChannel.joinGroup(InetAddress multicastAddress,
ChannelFuture future) |
ChannelFuture |
OioDatagramChannel.joinGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source,
ChannelFuture future) |
ChannelFuture |
OioDatagramChannel.joinGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface,
ChannelFuture future) |
ChannelFuture |
OioDatagramChannel.leaveGroup(InetAddress multicastAddress,
ChannelFuture future) |
ChannelFuture |
OioDatagramChannel.leaveGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source,
ChannelFuture future) |
ChannelFuture |
OioDatagramChannel.leaveGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface,
ChannelFuture future) |
ChannelFuture |
OioEventLoopGroup.register(Channel channel,
ChannelFuture future) |
Copyright © 2008-2012 The Netty Project. All Rights Reserved.