Uses of Interface
io.netty.channel.ChannelFuture
-
Packages that use ChannelFuture 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.embedded A virtualChannelthat helps wrapping a series of handlers to unit test the handlers or use them in non-I/O context.io.netty.channel.group A channel registry which helps a user maintain the list of openChannels and perform bulk operations on them.io.netty.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.oio Old blocking I/O based channel API implementation - recommended for a small number of connections (< 1000).io.netty.channel.pool Implementations and API forChannelpools.io.netty.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.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). -
-
Uses of ChannelFuture in io.netty.bootstrap
Methods in io.netty.bootstrap that return ChannelFuture Modifier and Type Method Description ChannelFutureAbstractBootstrap. bind()Create a newChanneland bind it.ChannelFutureAbstractBootstrap. bind(int inetPort)Create a newChanneland bind it.ChannelFutureAbstractBootstrap. bind(String inetHost, int inetPort)Create a newChanneland bind it.ChannelFutureAbstractBootstrap. bind(InetAddress inetHost, int inetPort)Create a newChanneland bind it.ChannelFutureAbstractBootstrap. bind(SocketAddress localAddress)Create a newChanneland bind it.ChannelFutureBootstrap. connect()Connect aChannelto the remote peer.ChannelFutureBootstrap. connect(String inetHost, int inetPort)Connect aChannelto the remote peer.ChannelFutureBootstrap. connect(InetAddress inetHost, int inetPort)Connect aChannelto the remote peer.ChannelFutureBootstrap. connect(SocketAddress remoteAddress)Connect aChannelto the remote peer.ChannelFutureBootstrap. connect(SocketAddress remoteAddress, SocketAddress localAddress)Connect aChannelto the remote peer.ChannelFutureAbstractBootstrap. register() -
Uses of ChannelFuture in io.netty.channel
Subinterfaces of ChannelFuture in io.netty.channel Modifier and Type Interface Description interfaceChannelProgressiveFutureAn specialChannelFuturewhich is used to indicate theFileRegiontransfer progressinterfaceChannelProgressivePromiseSpecialChannelPromisewhich will be notified once the associated bytes is transferring.interfaceChannelPromiseSpecialChannelFuturewhich is writable.Classes in io.netty.channel that implement ChannelFuture Modifier and Type Class Description classDefaultChannelProgressivePromiseThe defaultChannelProgressivePromiseimplementation.classDefaultChannelPromiseThe defaultChannelPromiseimplementation.classDelegatingChannelPromiseNotifierclassVoidChannelPromiseMethods in io.netty.channel that return ChannelFuture Modifier and Type Method Description ChannelFutureChannelFuture. addListener(io.netty.util.concurrent.GenericFutureListener<? extends io.netty.util.concurrent.Future<? super Void>> listener)ChannelFutureChannelFuture. addListeners(io.netty.util.concurrent.GenericFutureListener<? extends io.netty.util.concurrent.Future<? super Void>>... listeners)ChannelFutureChannelFuture. await()ChannelFutureChannelFuture. awaitUninterruptibly()default ChannelFutureChannel. bind(SocketAddress localAddress)default ChannelFutureChannel. bind(SocketAddress localAddress, ChannelPromise promise)default ChannelFutureChannelOutboundInvoker. bind(SocketAddress localAddress)Request to bind to the givenSocketAddressand notify theChannelFutureonce the operation completes, either because the operation was successful or because of an error.ChannelFutureChannelOutboundInvoker. bind(SocketAddress localAddress, ChannelPromise promise)Request to bind to the givenSocketAddressand notify theChannelFutureonce the operation completes, either because the operation was successful or because of an error.ChannelFutureDefaultChannelPipeline. bind(SocketAddress localAddress)ChannelFutureDefaultChannelPipeline. bind(SocketAddress localAddress, ChannelPromise promise)default ChannelFutureChannel. close()default ChannelFutureChannel. close(ChannelPromise promise)default ChannelFutureChannelOutboundInvoker. close()Request to close theChanneland notify theChannelFutureonce the operation completes, either because the operation was successful or because of an error.ChannelFutureChannelOutboundInvoker. close(ChannelPromise promise)Request to close theChanneland notify theChannelFutureonce the operation completes, either because the operation was successful or because of an error.ChannelFutureDefaultChannelPipeline. close()ChannelFutureDefaultChannelPipeline. close(ChannelPromise promise)ChannelFutureAbstractChannel. closeFuture()ChannelFutureChannel. closeFuture()Returns theChannelFuturewhich will be notified when this channel is closed.default ChannelFutureChannel. connect(SocketAddress remoteAddress)default ChannelFutureChannel. connect(SocketAddress remoteAddress, ChannelPromise promise)default ChannelFutureChannel. connect(SocketAddress remoteAddress, SocketAddress localAddress)default ChannelFutureChannel. connect(SocketAddress remoteAddress, SocketAddress localAddress, ChannelPromise promise)default ChannelFutureChannelOutboundInvoker. connect(SocketAddress remoteAddress)Request to connect to the givenSocketAddressand notify theChannelFutureonce the operation completes, either because the operation was successful or because of an error.ChannelFutureChannelOutboundInvoker. connect(SocketAddress remoteAddress, ChannelPromise promise)Request to connect to the givenSocketAddressand notify theChannelFutureonce the operation completes, either because the operation was successful or because of an error.default ChannelFutureChannelOutboundInvoker. connect(SocketAddress remoteAddress, SocketAddress localAddress)Request to connect to the givenSocketAddresswhile bind to the localAddress and notify theChannelFutureonce the operation completes, either because the operation was successful or because of an error.ChannelFutureChannelOutboundInvoker. connect(SocketAddress remoteAddress, SocketAddress localAddress, ChannelPromise promise)Request to connect to the givenSocketAddresswhile bind to the localAddress and notify theChannelFutureonce the operation completes, either because the operation was successful or because of an error.ChannelFutureDefaultChannelPipeline. connect(SocketAddress remoteAddress)ChannelFutureDefaultChannelPipeline. connect(SocketAddress remoteAddress, ChannelPromise promise)ChannelFutureDefaultChannelPipeline. connect(SocketAddress remoteAddress, SocketAddress localAddress)ChannelFutureDefaultChannelPipeline. connect(SocketAddress remoteAddress, SocketAddress localAddress, ChannelPromise promise)default ChannelFutureChannel. deregister()default ChannelFutureChannel. deregister(ChannelPromise promise)default ChannelFutureChannelOutboundInvoker. deregister()Request to deregister from the previous assignedEventExecutorand notify theChannelFutureonce the operation completes, either because the operation was successful or because of an error.ChannelFutureChannelOutboundInvoker. deregister(ChannelPromise promise)Request to deregister from the previous assignedEventExecutorand notify theChannelFutureonce the operation completes, either because the operation was successful or because of an error.ChannelFutureDefaultChannelPipeline. deregister()ChannelFutureDefaultChannelPipeline. deregister(ChannelPromise promise)default ChannelFutureChannel. disconnect()default ChannelFutureChannel. disconnect(ChannelPromise promise)default ChannelFutureChannelOutboundInvoker. disconnect()Request to disconnect from the remote peer and notify theChannelFutureonce the operation completes, either because the operation was successful or because of an error.ChannelFutureChannelOutboundInvoker. disconnect(ChannelPromise promise)Request to disconnect from the remote peer and notify theChannelFutureonce the operation completes, either because the operation was successful or because of an error.ChannelFutureDefaultChannelPipeline. disconnect()ChannelFutureDefaultChannelPipeline. disconnect(ChannelPromise promise)default ChannelFutureChannel. newFailedFuture(Throwable cause)ChannelFutureChannelOutboundInvoker. newFailedFuture(Throwable cause)Create a newChannelFuturewhich is marked as failed already.default ChannelFutureChannelPipeline. newFailedFuture(Throwable cause)ChannelFutureDefaultChannelPipeline. newFailedFuture(Throwable cause)default ChannelFutureChannel. newSucceededFuture()ChannelFutureChannelOutboundInvoker. newSucceededFuture()Create a newChannelFuturewhich is marked as succeeded already.ChannelFutureDefaultChannelPipeline. newSucceededFuture()ChannelFutureEventLoopGroup. register(Channel channel)ChannelFutureEventLoopGroup. register(ChannelPromise promise)ChannelFutureEventLoopGroup. register(Channel channel, ChannelPromise promise)Deprecated.UseEventLoopGroup.register(ChannelPromise)instead.default ChannelFutureIoEventLoopGroup. register(Channel channel)Deprecated.default ChannelFutureIoEventLoopGroup. register(ChannelPromise promise)Deprecated.ChannelFutureManualIoEventLoop. register(Channel channel)Deprecated.ChannelFutureManualIoEventLoop. register(ChannelPromise promise)Deprecated.ChannelFutureManualIoEventLoop. register(Channel channel, ChannelPromise promise)Deprecated.ChannelFutureMultithreadEventLoopGroup. register(Channel channel)ChannelFutureMultithreadEventLoopGroup. register(ChannelPromise promise)ChannelFutureMultithreadEventLoopGroup. register(Channel channel, ChannelPromise promise)Deprecated.ChannelFutureSingleThreadEventLoop. register(Channel channel)ChannelFutureSingleThreadEventLoop. register(ChannelPromise promise)ChannelFutureSingleThreadEventLoop. register(Channel channel, ChannelPromise promise)Deprecated.ChannelFutureThreadPerChannelEventLoop. register(ChannelPromise promise)Deprecated.ChannelFutureThreadPerChannelEventLoop. register(Channel channel, ChannelPromise promise)Deprecated.ChannelFutureThreadPerChannelEventLoopGroup. register(Channel channel)Deprecated.ChannelFutureThreadPerChannelEventLoopGroup. register(ChannelPromise promise)Deprecated.ChannelFutureThreadPerChannelEventLoopGroup. register(Channel channel, ChannelPromise promise)Deprecated.ChannelFuturePendingWriteQueue. removeAndWrite()Removes a pending write operation and performs it viaChannelOutboundInvoker.write(Object, ChannelPromise).ChannelFuturePendingWriteQueue. removeAndWriteAll()Remove all pending write operation and performs them viaChannelOutboundInvoker.write(Object, ChannelPromise).ChannelFutureChannelFuture. removeListener(io.netty.util.concurrent.GenericFutureListener<? extends io.netty.util.concurrent.Future<? super Void>> listener)ChannelFutureChannelFuture. removeListeners(io.netty.util.concurrent.GenericFutureListener<? extends io.netty.util.concurrent.Future<? super Void>>... listeners)ChannelFutureChannelFuture. sync()ChannelFutureChannelFuture. syncUninterruptibly()default ChannelFutureChannel. write(Object msg)default ChannelFutureChannel. write(Object msg, ChannelPromise promise)default ChannelFutureChannelOutboundInvoker. write(Object msg)Request to write a message via thisChannelHandlerContextthrough theChannelPipeline.ChannelFutureChannelOutboundInvoker. write(Object msg, ChannelPromise promise)Request to write a message via thisChannelHandlerContextthrough theChannelPipeline.ChannelFutureDefaultChannelPipeline. write(Object msg)ChannelFutureDefaultChannelPipeline. write(Object msg, ChannelPromise promise)default ChannelFutureChannel. writeAndFlush(Object msg)default ChannelFutureChannel. writeAndFlush(Object msg, ChannelPromise promise)default ChannelFutureChannelOutboundInvoker. writeAndFlush(Object msg)Shortcut for callChannelOutboundInvoker.write(Object)andChannelOutboundInvoker.flush().ChannelFutureChannelOutboundInvoker. writeAndFlush(Object msg, ChannelPromise promise)Shortcut for callChannelOutboundInvoker.write(Object, ChannelPromise)andChannelOutboundInvoker.flush().ChannelFutureDefaultChannelPipeline. writeAndFlush(Object msg)ChannelFutureDefaultChannelPipeline. writeAndFlush(Object msg, ChannelPromise promise)Methods in io.netty.channel with parameters of type ChannelFuture Modifier and Type Method Description voidDelegatingChannelPromiseNotifier. operationComplete(ChannelFuture future) -
Uses of ChannelFuture in io.netty.channel.embedded
Methods in io.netty.channel.embedded that return ChannelFuture Modifier and Type Method Description ChannelFutureEmbeddedChannel. bind(SocketAddress localAddress)ChannelFutureEmbeddedChannel. bind(SocketAddress localAddress, ChannelPromise promise)ChannelFutureEmbeddedChannel. close()ChannelFutureEmbeddedChannel. close(ChannelPromise promise)ChannelFutureEmbeddedChannel. connect(SocketAddress remoteAddress)ChannelFutureEmbeddedChannel. connect(SocketAddress remoteAddress, ChannelPromise promise)ChannelFutureEmbeddedChannel. connect(SocketAddress remoteAddress, SocketAddress localAddress)ChannelFutureEmbeddedChannel. connect(SocketAddress remoteAddress, SocketAddress localAddress, ChannelPromise promise)ChannelFutureEmbeddedChannel. deregister()ChannelFutureEmbeddedChannel. deregister(ChannelPromise promise)ChannelFutureEmbeddedChannel. disconnect()ChannelFutureEmbeddedChannel. disconnect(ChannelPromise promise)ChannelFutureEmbeddedChannel. write(Object msg)ChannelFutureEmbeddedChannel. write(Object msg, ChannelPromise promise)ChannelFutureEmbeddedChannel. writeAndFlush(Object msg)ChannelFutureEmbeddedChannel. writeAndFlush(Object msg, ChannelPromise promise)ChannelFutureEmbeddedChannel. writeOneInbound(Object msg)Writes one message to the inbound of thisChanneland does not flush it.ChannelFutureEmbeddedChannel. writeOneInbound(Object msg, ChannelPromise promise)Writes one message to the inbound of thisChanneland does not flush it.ChannelFutureEmbeddedChannel. writeOneOutbound(Object msg)Writes one message to the outbound of thisChanneland does not flush it.ChannelFutureEmbeddedChannel. writeOneOutbound(Object msg, ChannelPromise promise)Writes one message to the outbound of thisChanneland does not flush it. -
Uses of ChannelFuture in io.netty.channel.group
Methods in io.netty.channel.group that return ChannelFuture Modifier and Type Method Description ChannelFutureChannelGroupFuture. find(Channel channel)Returns theChannelFutureof the individual I/O operation which is associated with the specifiedChannel.Methods in io.netty.channel.group that return types with arguments of type ChannelFuture Modifier and Type Method Description Iterator<ChannelFuture>ChannelGroupFuture. iterator()Returns theIteratorthat enumerates allChannelFutures which are associated with this future. -
Uses of ChannelFuture in io.netty.channel.nio
Methods in io.netty.channel.nio that return ChannelFuture Modifier and Type Method Description protected abstract ChannelFutureAbstractNioByteChannel. shutdownInput()Shutdown the input side of the channel. -
Uses of ChannelFuture in io.netty.channel.oio
Methods in io.netty.channel.oio that return ChannelFuture Modifier and Type Method Description protected abstract ChannelFutureAbstractOioByteChannel. shutdownInput()Deprecated.Shutdown the input side of this channel. -
Uses of ChannelFuture in io.netty.channel.pool
Methods in io.netty.channel.pool that return ChannelFuture Modifier and Type Method Description protected ChannelFutureSimpleChannelPool. connectChannel(Bootstrap bs)Bootstrap a newChannel. -
Uses of ChannelFuture in io.netty.channel.socket
Methods in io.netty.channel.socket that return ChannelFuture Modifier and Type Method Description ChannelFutureDatagramChannel. block(InetAddress multicastAddress, InetAddress sourceToBlock)Block the given sourceToBlock address for the given multicastAddress and notifies theChannelFutureonce the operation completes.ChannelFutureDatagramChannel. block(InetAddress multicastAddress, InetAddress sourceToBlock, ChannelPromise future)Block the given sourceToBlock address for the given multicastAddress and notifies theChannelFutureonce the operation completes.ChannelFutureDatagramChannel. block(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress sourceToBlock)Block the given sourceToBlock address for the given multicastAddress on the given networkInterface and notifies theChannelFutureonce the operation completes.ChannelFutureDatagramChannel. block(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress sourceToBlock, ChannelPromise future)Block the given sourceToBlock address for the given multicastAddress on the given networkInterface and notifies theChannelFutureonce the operation completes.ChannelFutureDatagramChannel. joinGroup(InetAddress multicastAddress)Joins a multicast group and notifies theChannelFutureonce the operation completes.ChannelFutureDatagramChannel. joinGroup(InetAddress multicastAddress, ChannelPromise future)Joins a multicast group and notifies theChannelFutureonce the operation completes.ChannelFutureDatagramChannel. joinGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source)Joins the specified multicast group at the specified interface and notifies theChannelFutureonce the operation completes.ChannelFutureDatagramChannel. joinGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source, ChannelPromise future)Joins the specified multicast group at the specified interface and notifies theChannelFutureonce the operation completes.ChannelFutureDatagramChannel. joinGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface)Joins the specified multicast group at the specified interface and notifies theChannelFutureonce the operation completes.ChannelFutureDatagramChannel. joinGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface, ChannelPromise future)Joins the specified multicast group at the specified interface and notifies theChannelFutureonce the operation completes.ChannelFutureDatagramChannel. leaveGroup(InetAddress multicastAddress)Leaves a multicast group and notifies theChannelFutureonce the operation completes.ChannelFutureDatagramChannel. leaveGroup(InetAddress multicastAddress, ChannelPromise future)Leaves a multicast group and notifies theChannelFutureonce the operation completes.ChannelFutureDatagramChannel. leaveGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source)Leave the specified multicast group at the specified interface using the specified source and notifies theChannelFutureonce the operation completes.ChannelFutureDatagramChannel. leaveGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source, ChannelPromise future)Leave the specified multicast group at the specified interface using the specified source and notifies theChannelFutureonce the operation completes.ChannelFutureDatagramChannel. leaveGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface)Leaves a multicast group on a specified local interface and notifies theChannelFutureonce the operation completes.ChannelFutureDatagramChannel. leaveGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface, ChannelPromise future)Leaves a multicast group on a specified local interface and notifies theChannelFutureonce the operation completes.ChannelFutureDuplexChannel. shutdown()Will shutdown the input and output sides of this channel.ChannelFutureDuplexChannel. shutdown(ChannelPromise promise)Will shutdown the input and output sides of this channel.ChannelFutureDuplexChannel. shutdownInput()ChannelFutureDuplexChannel. shutdownInput(ChannelPromise promise)Will shutdown the input and notifyChannelPromise.ChannelFutureDuplexChannel. shutdownOutput()ChannelFutureDuplexChannel. shutdownOutput(ChannelPromise promise)Will shutdown the output and notifyChannelPromise. -
Uses of ChannelFuture in io.netty.channel.socket.nio
Methods in io.netty.channel.socket.nio that return ChannelFuture Modifier and Type Method Description ChannelFutureNioDatagramChannel. block(InetAddress multicastAddress, InetAddress sourceToBlock)Block the given sourceToBlock address for the given multicastAddressChannelFutureNioDatagramChannel. block(InetAddress multicastAddress, InetAddress sourceToBlock, ChannelPromise promise)Block the given sourceToBlock address for the given multicastAddressChannelFutureNioDatagramChannel. block(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress sourceToBlock)Block the given sourceToBlock address for the given multicastAddress on the given networkInterfaceChannelFutureNioDatagramChannel. block(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress sourceToBlock, ChannelPromise promise)Block the given sourceToBlock address for the given multicastAddress on the given networkInterfaceChannelFutureNioDatagramChannel. joinGroup(InetAddress multicastAddress)ChannelFutureNioDatagramChannel. joinGroup(InetAddress multicastAddress, ChannelPromise promise)ChannelFutureNioDatagramChannel. joinGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source)ChannelFutureNioDatagramChannel. joinGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source, ChannelPromise promise)ChannelFutureNioDatagramChannel. joinGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface)ChannelFutureNioDatagramChannel. joinGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface, ChannelPromise promise)ChannelFutureNioDatagramChannel. leaveGroup(InetAddress multicastAddress)ChannelFutureNioDatagramChannel. leaveGroup(InetAddress multicastAddress, ChannelPromise promise)ChannelFutureNioDatagramChannel. leaveGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source)ChannelFutureNioDatagramChannel. leaveGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source, ChannelPromise promise)ChannelFutureNioDatagramChannel. leaveGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface)ChannelFutureNioDatagramChannel. leaveGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface, ChannelPromise promise)ChannelFutureNioDomainSocketChannel. shutdown()ChannelFutureNioDomainSocketChannel. shutdown(ChannelPromise promise)ChannelFutureNioSocketChannel. shutdown()ChannelFutureNioSocketChannel. shutdown(ChannelPromise promise)ChannelFutureNioDomainSocketChannel. shutdownInput()ChannelFutureNioDomainSocketChannel. shutdownInput(ChannelPromise promise)ChannelFutureNioSocketChannel. shutdownInput()ChannelFutureNioSocketChannel. shutdownInput(ChannelPromise promise)ChannelFutureNioDomainSocketChannel. shutdownOutput()ChannelFutureNioDomainSocketChannel. shutdownOutput(ChannelPromise promise)ChannelFutureNioSocketChannel. shutdownOutput()ChannelFutureNioSocketChannel. shutdownOutput(ChannelPromise promise) -
Uses of ChannelFuture in io.netty.channel.socket.oio
Methods in io.netty.channel.socket.oio that return ChannelFuture Modifier and Type Method Description ChannelFutureOioDatagramChannel. block(InetAddress multicastAddress, InetAddress sourceToBlock)Deprecated.ChannelFutureOioDatagramChannel. block(InetAddress multicastAddress, InetAddress sourceToBlock, ChannelPromise promise)Deprecated.ChannelFutureOioDatagramChannel. block(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress sourceToBlock)Deprecated.ChannelFutureOioDatagramChannel. block(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress sourceToBlock, ChannelPromise promise)Deprecated.ChannelFutureOioDatagramChannel. joinGroup(InetAddress multicastAddress)Deprecated.ChannelFutureOioDatagramChannel. joinGroup(InetAddress multicastAddress, ChannelPromise promise)Deprecated.ChannelFutureOioDatagramChannel. joinGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source)Deprecated.ChannelFutureOioDatagramChannel. joinGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source, ChannelPromise promise)Deprecated.ChannelFutureOioDatagramChannel. joinGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface)Deprecated.ChannelFutureOioDatagramChannel. joinGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface, ChannelPromise promise)Deprecated.ChannelFutureOioDatagramChannel. leaveGroup(InetAddress multicastAddress)Deprecated.ChannelFutureOioDatagramChannel. leaveGroup(InetAddress multicastAddress, ChannelPromise promise)Deprecated.ChannelFutureOioDatagramChannel. leaveGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source)Deprecated.ChannelFutureOioDatagramChannel. leaveGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source, ChannelPromise promise)Deprecated.ChannelFutureOioDatagramChannel. leaveGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface)Deprecated.ChannelFutureOioDatagramChannel. leaveGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface, ChannelPromise promise)Deprecated.ChannelFutureOioSocketChannel. shutdown()Deprecated.ChannelFutureOioSocketChannel. shutdown(ChannelPromise promise)Deprecated.ChannelFutureOioSocketChannel. shutdownInput()Deprecated.ChannelFutureOioSocketChannel. shutdownInput(ChannelPromise promise)Deprecated.ChannelFutureOioSocketChannel. shutdownOutput()Deprecated.ChannelFutureOioSocketChannel. shutdownOutput(ChannelPromise promise)Deprecated.
-