Uses of Interface
io.netty.channel.Channel
-
Packages that use Channel 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.local A virtual transport that enables the communication between the two parties in the same virtual machine.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).io.netty.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty.handler.proxy Adds support for client connections via proxy protocols such as SOCKS and HTTP CONNECT tunnelingio.netty.handler.ssl SSL · TLS implementation based onSSLEngineio.netty.resolver.dns An alternative to Java's built-in domain name lookup mechanism that resolves a domain name asynchronously, which supports the queries of an arbitrary DNS record type as well. -
-
Uses of Channel in io.netty.bootstrap
Classes in io.netty.bootstrap with type parameters of type Channel Modifier and Type Class Description classAbstractBootstrap<B extends AbstractBootstrap<B,C>,C extends Channel>AbstractBootstrapis a helper class that makes it easy to bootstrap aChannel.classAbstractBootstrapConfig<B extends AbstractBootstrap<B,C>,C extends Channel>Exposes the configuration of anAbstractBootstrap.interfaceChannelFactory<T extends Channel>Deprecated.UseChannelFactoryinstead.Classes in io.netty.bootstrap that implement Channel Modifier and Type Class Description (package private) classFailedChannelMethods in io.netty.bootstrap with parameters of type Channel Modifier and Type Method Description private static voidAbstractBootstrap. doBind0(ChannelFuture regFuture, Channel channel, java.net.SocketAddress localAddress, ChannelPromise promise)private ChannelFutureBootstrap. doResolveAndConnect0(Channel channel, java.net.SocketAddress remoteAddress, java.net.SocketAddress localAddress, ChannelPromise promise)private static voidServerBootstrap.ServerBootstrapAcceptor. forceClose(Channel child, java.lang.Throwable t)(package private) abstract voidAbstractBootstrap. init(Channel channel)(package private) voidBootstrap. init(Channel channel)(package private) voidServerBootstrap. init(Channel channel)(package private) static voidAbstractBootstrap. setAttributes(Channel channel, java.util.Map.Entry<AttributeKey<?>,java.lang.Object>[] attrs)private static voidAbstractBootstrap. setChannelOption(Channel channel, ChannelOption<?> option, java.lang.Object value, InternalLogger logger)(package private) static voidAbstractBootstrap. setChannelOptions(Channel channel, java.util.Map.Entry<ChannelOption<?>,java.lang.Object>[] options, InternalLogger logger)Constructors in io.netty.bootstrap with parameters of type Channel Constructor Description PendingRegistrationPromise(Channel channel)ServerBootstrapAcceptor(Channel channel, EventLoopGroup childGroup, ChannelHandler childHandler, java.util.Map.Entry<ChannelOption<?>,java.lang.Object>[] childOptions, java.util.Map.Entry<AttributeKey<?>,java.lang.Object>[] childAttrs) -
Uses of Channel in io.netty.channel
Classes in io.netty.channel with type parameters of type Channel Modifier and Type Interface Description interfaceChannelFactory<T extends Channel>Creates a newChannel.classChannelInitializer<C extends Channel>A specialChannelInboundHandlerwhich offers an easy way to initialize aChannelonce it was registered to itsEventLoop.classReflectiveChannelFactory<T extends Channel>AChannelFactorythat instantiates a newChannelby invoking its default constructor reflectively.Subinterfaces of Channel in io.netty.channel Modifier and Type Interface Description interfaceServerChannelClasses in io.netty.channel that implement Channel Modifier and Type Class Description classAbstractChannelA skeletalChannelimplementation.classAbstractServerChannelA skeletal server-sideChannelimplementation.Fields in io.netty.channel declared as Channel Modifier and Type Field Description private ChannelThreadPerChannelEventLoop. chDeprecated.private ChannelChannelOutboundBuffer. channelprivate ChannelCoalescingBufferQueue. channelprivate ChannelCompleteChannelFuture. channelprotected ChannelDefaultChannelConfig. channelprivate ChannelDefaultChannelPipeline. channelprivate ChannelDefaultChannelProgressivePromise. channelprivate ChannelDefaultChannelPromise. channelprivate ChannelVoidChannelPromise. channelprivate ChannelAbstractChannel. parentMethods in io.netty.channel that return Channel Modifier and Type Method Description ChannelAbstractChannelHandlerContext. channel()ChannelChannelFuture. channel()Returns a channel where the I/O operation associated with this future takes place.ChannelChannelHandlerContext. channel()Return theChannelwhich is bound to theChannelHandlerContext.ChannelChannelPipeline. channel()Returns theChannelthat this pipeline is attached to.ChannelChannelPromise. channel()ChannelCombinedChannelDuplexHandler.DelegatingChannelHandlerContext. channel()ChannelCompleteChannelFuture. channel()ChannelDefaultChannelPipeline. channel()ChannelDefaultChannelProgressivePromise. channel()ChannelDefaultChannelPromise. channel()ChannelDelegatingChannelPromiseNotifier. channel()ChannelVoidChannelPromise. channel()ChannelAbstractChannel. flush()ChannelChannel. flush()ChannelAbstractChannel. parent()ChannelChannel. parent()Returns the parent of this channel.ChannelAbstractChannel. read()ChannelChannel. read()Methods in io.netty.channel with parameters of type Channel Modifier and Type Method Description intAbstractChannel. compareTo(Channel o)(package private) static PendingBytesTrackerPendingBytesTracker. newTracker(Channel channel)ChannelFutureEventLoopGroup. register(Channel channel)ChannelFutureEventLoopGroup. register(Channel channel, ChannelPromise promise)Deprecated.UseEventLoopGroup.register(ChannelPromise)instead.ChannelFutureMultithreadEventLoopGroup. register(Channel channel)ChannelFutureMultithreadEventLoopGroup. register(Channel channel, ChannelPromise promise)Deprecated.ChannelFutureSingleThreadEventLoop. register(Channel channel)ChannelFutureSingleThreadEventLoop. register(Channel channel, ChannelPromise promise)Deprecated.ChannelFutureThreadPerChannelEventLoop. register(Channel channel, ChannelPromise promise)Deprecated.ChannelFutureThreadPerChannelEventLoopGroup. register(Channel channel)Deprecated.ChannelFutureThreadPerChannelEventLoopGroup. register(Channel channel, ChannelPromise promise)Deprecated.Constructors in io.netty.channel with parameters of type Channel Constructor Description AbstractChannel(Channel parent)Creates a new instance.AbstractChannel(Channel parent, ChannelId id)Creates a new instance.AbstractCoalescingBufferQueue(Channel channel, int initSize)Create a new instance.CoalescingBufferQueue(Channel channel)CoalescingBufferQueue(Channel channel, int initSize)CoalescingBufferQueue(Channel channel, int initSize, boolean updateWritability)CompleteChannelFuture(Channel channel, EventExecutor executor)Creates a new instance.DefaultChannelConfig(Channel channel)DefaultChannelConfig(Channel channel, RecvByteBufAllocator allocator)DefaultChannelPipeline(Channel channel)DefaultChannelProgressivePromise(Channel channel)Creates a new instance.DefaultChannelProgressivePromise(Channel channel, EventExecutor executor)Creates a new instance.DefaultChannelPromise(Channel channel)Creates a new instance.DefaultChannelPromise(Channel channel, EventExecutor executor)Creates a new instance.FailedChannelFuture(Channel channel, EventExecutor executor, java.lang.Throwable cause)Creates a new instance.SucceededChannelFuture(Channel channel, EventExecutor executor)Creates a new instance.VoidChannelPromise(Channel channel, boolean fireException)Creates a new instance. -
Uses of Channel in io.netty.channel.embedded
Classes in io.netty.channel.embedded that implement Channel Modifier and Type Class Description classEmbeddedChannelBase class forChannelimplementations that are used in an embedded fashion.Methods in io.netty.channel.embedded with parameters of type Channel Modifier and Type Method Description ChannelFutureEmbeddedEventLoop. register(Channel channel)ChannelFutureEmbeddedEventLoop. register(Channel channel, ChannelPromise promise)Deprecated.Constructors in io.netty.channel.embedded with parameters of type Channel Constructor Description EmbeddedChannel(Channel parent, ChannelId channelId, boolean register, boolean hasDisconnect, ChannelHandler... handlers)Create a new instance with the channel ID set to the given ID and the pipeline initialized with the specified handlers. -
Uses of Channel in io.netty.channel.group
Fields in io.netty.channel.group declared as Channel Modifier and Type Field Description private ChannelChannelMatchers.InstanceMatcher. channelFields in io.netty.channel.group with type parameters of type Channel Modifier and Type Field Description private java.lang.Class<? extends Channel>ChannelMatchers.ClassMatcher. clazzprivate java.util.Collection<java.util.Map.Entry<Channel,java.lang.Throwable>>ChannelGroupException. failedprivate java.util.Map<Channel,ChannelFuture>DefaultChannelGroupFuture. futuresprivate java.util.concurrent.ConcurrentMap<ChannelId,Channel>DefaultChannelGroup. nonServerChannelsprivate java.util.concurrent.ConcurrentMap<ChannelId,Channel>DefaultChannelGroup. serverChannelsMethods in io.netty.channel.group that return Channel Modifier and Type Method Description ChannelChannelGroup. find(ChannelId id)ChannelDefaultChannelGroup. find(ChannelId id)Methods in io.netty.channel.group that return types with arguments of type Channel Modifier and Type Method Description java.util.Iterator<java.util.Map.Entry<Channel,java.lang.Throwable>>ChannelGroupException. iterator()Returns aIteratorwhich contains all theThrowablethat was a cause of the failure and the related id of theChannel.java.util.Iterator<Channel>DefaultChannelGroup. iterator()Methods in io.netty.channel.group with parameters of type Channel Modifier and Type Method Description booleanDefaultChannelGroup. add(Channel channel)ChannelFutureChannelGroupFuture. find(Channel channel)Returns theChannelFutureof the individual I/O operation which is associated with the specifiedChannel.ChannelFutureDefaultChannelGroupFuture. find(Channel channel)ChannelFutureVoidChannelGroupFuture. find(Channel channel)static ChannelMatcherChannelMatchers. is(Channel channel)Returns aChannelMatcherthat matches the givenChannel.static ChannelMatcherChannelMatchers. isNot(Channel channel)Returns aChannelMatcherthat matches allChannels except the given.booleanChannelMatcher. matches(Channel channel)Returnstrueif the operation should be also executed on the givenChannel.booleanChannelMatchers.ClassMatcher. matches(Channel ch)booleanChannelMatchers.CompositeMatcher. matches(Channel channel)booleanChannelMatchers.InstanceMatcher. matches(Channel ch)booleanChannelMatchers.InvertMatcher. matches(Channel channel)Method parameters in io.netty.channel.group with type arguments of type Channel Modifier and Type Method Description static ChannelMatcherChannelMatchers. isInstanceOf(java.lang.Class<? extends Channel> clazz)Returns aChannelMatcherthat matches allChannels that are an instance of sub-type of the given class.static ChannelMatcherChannelMatchers. isNotInstanceOf(java.lang.Class<? extends Channel> clazz)Returns aChannelMatcherthat matches allChannels that are not an instance of sub-type of the given class.Constructors in io.netty.channel.group with parameters of type Channel Constructor Description InstanceMatcher(Channel channel)Constructor parameters in io.netty.channel.group with type arguments of type Channel Constructor Description ChannelGroupException(java.util.Collection<java.util.Map.Entry<Channel,java.lang.Throwable>> causes)ClassMatcher(java.lang.Class<? extends Channel> clazz)DefaultChannelGroupFuture(ChannelGroup group, java.util.Map<Channel,ChannelFuture> futures, EventExecutor executor) -
Uses of Channel in io.netty.channel.local
Classes in io.netty.channel.local that implement Channel Modifier and Type Class Description classLocalChannelAChannelfor the local transport.classLocalServerChannelAServerChannelfor the local transport which allows in VM communication.Fields in io.netty.channel.local with type parameters of type Channel Modifier and Type Field Description private static java.util.concurrent.ConcurrentMap<LocalAddress,Channel>LocalChannelRegistry. boundChannelsMethods in io.netty.channel.local that return Channel Modifier and Type Method Description (package private) static ChannelLocalChannelRegistry. get(java.net.SocketAddress localAddress)Methods in io.netty.channel.local with parameters of type Channel Modifier and Type Method Description (package private) static LocalAddressLocalChannelRegistry. register(Channel channel, LocalAddress oldLocalAddress, java.net.SocketAddress localAddress)Constructors in io.netty.channel.local with parameters of type Channel Constructor Description LocalAddress(Channel channel)Creates a new ephemeral port based on the ID of the specified channel. -
Uses of Channel in io.netty.channel.nio
Classes in io.netty.channel.nio that implement Channel Modifier and Type Class Description classAbstractNioByteChannelAbstractNioChannelbase class forChannels that operate on bytes.classAbstractNioChannelAbstract base class forChannelimplementations which use a Selector based approach.classAbstractNioMessageChannelAbstractNioChannelbase class forChannels that operate on messages.Constructors in io.netty.channel.nio with parameters of type Channel Constructor Description AbstractNioByteChannel(Channel parent, java.nio.channels.SelectableChannel ch)Create a new instanceAbstractNioChannel(Channel parent, java.nio.channels.SelectableChannel ch, int readInterestOp)Create a new instanceAbstractNioMessageChannel(Channel parent, java.nio.channels.SelectableChannel ch, int readInterestOp) -
Uses of Channel in io.netty.channel.oio
Classes in io.netty.channel.oio that implement Channel Modifier and Type Class Description classAbstractOioByteChannelDeprecated.use NIO / EPOLL / KQUEUE transport.classAbstractOioChannelDeprecated.use NIO / EPOLL / KQUEUE transport.classAbstractOioMessageChannelDeprecated.use NIO / EPOLL / KQUEUE transport.classOioByteStreamChannelDeprecated.use NIO / EPOLL / KQUEUE transport.Constructors in io.netty.channel.oio with parameters of type Channel Constructor Description AbstractOioByteChannel(Channel parent)Deprecated.AbstractOioChannel(Channel parent)Deprecated.AbstractOioMessageChannel(Channel parent)Deprecated.OioByteStreamChannel(Channel parent)Deprecated.Create a new instance -
Uses of Channel in io.netty.channel.pool
Fields in io.netty.channel.pool with type parameters of type Channel Modifier and Type Field Description private java.util.Deque<Channel>SimpleChannelPool. dequeprivate Promise<Channel>FixedChannelPool.AcquireListener. originalPromise(package private) Promise<Channel>FixedChannelPool.AcquireTask. promiseMethods in io.netty.channel.pool that return Channel Modifier and Type Method Description protected ChannelSimpleChannelPool. pollChannel()Poll aChannelout of the internal storage to reuse it.Methods in io.netty.channel.pool that return types with arguments of type Channel Modifier and Type Method Description Future<Channel>ChannelPool. acquire()Acquire aChannelfrom thisChannelPool.Future<Channel>ChannelPool. acquire(Promise<Channel> promise)Acquire aChannelfrom thisChannelPool.Future<Channel>FixedChannelPool. acquire(Promise<Channel> promise)Future<Channel>SimpleChannelPool. acquire()Future<Channel>SimpleChannelPool. acquire(Promise<Channel> promise)private Future<Channel>SimpleChannelPool. acquireHealthyFromPoolOrNew(Promise<Channel> promise)Tries to retrieve healthy channel from the pool if any or creates a new channel otherwise.Methods in io.netty.channel.pool with parameters of type Channel Modifier and Type Method Description voidAbstractChannelPoolHandler. channelAcquired(Channel ch)NOOP implementation, sub-classes may override this.voidChannelPoolHandler. channelAcquired(Channel ch)Called once aChannelwas acquired by callingChannelPool.acquire()orChannelPool.acquire(Promise).voidChannelPoolHandler. channelCreated(Channel ch)Called once a newChannelis created in theChannelPool.voidAbstractChannelPoolHandler. channelReleased(Channel ch)NOOP implementation, sub-classes may override this.voidChannelPoolHandler. channelReleased(Channel ch)Called once aChannelwas released by callingChannelPool.release(Channel)orChannelPool.release(Channel, Promise).private voidSimpleChannelPool. closeAndFail(Channel channel, java.lang.Throwable cause, Promise<?> promise)private voidSimpleChannelPool. closeChannel(Channel channel)private voidSimpleChannelPool. doHealthCheck(Channel ch, Promise<Channel> promise)private voidSimpleChannelPool. doHealthCheckOnRelease(Channel channel, Promise<java.lang.Void> promise)private voidSimpleChannelPool. doReleaseChannel(Channel channel, Promise<java.lang.Void> promise)Future<java.lang.Boolean>ChannelHealthChecker. isHealthy(Channel channel)Check if the given channel is healthy which means it can be used.private voidSimpleChannelPool. notifyHealthCheck(Future<java.lang.Boolean> future, Channel ch, Promise<Channel> promise)protected booleanSimpleChannelPool. offerChannel(Channel channel)Offer aChannelback to the internal storage.Future<java.lang.Void>ChannelPool. release(Channel channel)Release aChannelback to thisChannelPool.Future<java.lang.Void>ChannelPool. release(Channel channel, Promise<java.lang.Void> promise)Release aChannelback to thisChannelPool.Future<java.lang.Void>FixedChannelPool. release(Channel channel, Promise<java.lang.Void> promise)Future<java.lang.Void>SimpleChannelPool. release(Channel channel)Future<java.lang.Void>SimpleChannelPool. release(Channel channel, Promise<java.lang.Void> promise)private voidSimpleChannelPool. releaseAndOffer(Channel channel, Promise<java.lang.Void> promise)private voidSimpleChannelPool. releaseAndOfferIfHealthy(Channel channel, Promise<java.lang.Void> promise, Future<java.lang.Boolean> future)Adds the channel back to the pool only if the channel is healthy.Method parameters in io.netty.channel.pool with type arguments of type Channel Modifier and Type Method Description Future<Channel>ChannelPool. acquire(Promise<Channel> promise)Acquire aChannelfrom thisChannelPool.Future<Channel>FixedChannelPool. acquire(Promise<Channel> promise)Future<Channel>SimpleChannelPool. acquire(Promise<Channel> promise)private voidFixedChannelPool. acquire0(Promise<Channel> promise)private Future<Channel>SimpleChannelPool. acquireHealthyFromPoolOrNew(Promise<Channel> promise)Tries to retrieve healthy channel from the pool if any or creates a new channel otherwise.private voidSimpleChannelPool. doHealthCheck(Channel ch, Promise<Channel> promise)private voidSimpleChannelPool. notifyConnect(ChannelFuture future, Promise<Channel> promise)private voidSimpleChannelPool. notifyHealthCheck(Future<java.lang.Boolean> future, Channel ch, Promise<Channel> promise)voidFixedChannelPool.AcquireListener. operationComplete(Future<Channel> future)Constructor parameters in io.netty.channel.pool with type arguments of type Channel Constructor Description AcquireListener(Promise<Channel> originalPromise)AcquireTask(Promise<Channel> promise) -
Uses of Channel in io.netty.channel.socket
Subinterfaces of Channel in io.netty.channel.socket Modifier and Type Interface Description interfaceDatagramChannelA UDP/IPChannel.interfaceDuplexChannelA duplexChannelthat has two sides that can be shutdown independently.interfaceServerSocketChannelA TCP/IPServerChannelwhich accepts incoming TCP/IP connections.interfaceSocketChannelA TCP/IP socketChannel. -
Uses of Channel in io.netty.channel.socket.nio
Classes in io.netty.channel.socket.nio that implement Channel Modifier and Type Class Description classNioDatagramChannelAn NIO datagramChannelthat sends and receives anAddressedEnvelope.classNioServerSocketChannelAServerSocketChannelimplementation which uses NIO selector based implementation to accept new connections.classNioSocketChannelSocketChannelwhich uses NIO selector based implementation.Constructors in io.netty.channel.socket.nio with parameters of type Channel Constructor Description NioSocketChannel(Channel parent, java.nio.channels.SocketChannel socket)Create a new instance -
Uses of Channel in io.netty.channel.socket.oio
Classes in io.netty.channel.socket.oio that implement Channel Modifier and Type Class Description classOioDatagramChannelDeprecated.use NIO / EPOLL / KQUEUE transport.classOioServerSocketChannelDeprecated.use NIO / EPOLL / KQUEUE transport.classOioSocketChannelDeprecated.use NIO / EPOLL / KQUEUE transport.Constructors in io.netty.channel.socket.oio with parameters of type Channel Constructor Description OioSocketChannel(Channel parent, java.net.Socket socket)Deprecated.Create a new instance from the givenSocket -
Uses of Channel in io.netty.handler.codec.http.websocketx
Methods in io.netty.handler.codec.http.websocketx with parameters of type Channel Modifier and Type Method Description private voidWebSocketClientHandshaker. applyForceCloseTimeout(Channel channel, ChannelFuture flushFuture)ChannelFutureWebSocketClientHandshaker. close(Channel channel, CloseWebSocketFrame frame)Performs the closing handshakeChannelFutureWebSocketClientHandshaker. close(Channel channel, CloseWebSocketFrame frame, ChannelPromise promise)Performs the closing handshakeChannelFutureWebSocketServerHandshaker. close(Channel channel, CloseWebSocketFrame frame)Performs the closing handshakeChannelFutureWebSocketServerHandshaker. close(Channel channel, CloseWebSocketFrame frame, ChannelPromise promise)Performs the closing handshakeChannelFutureWebSocketServerHandshaker00. close(Channel channel, CloseWebSocketFrame frame, ChannelPromise promise)Echo back the closing framevoidWebSocketClientHandshaker. finishHandshake(Channel channel, FullHttpResponse response)Validates and finishes the opening handshake initiated byWebSocketClientHandshaker.handshake(io.netty.channel.Channel)}.(package private) static WebSocketServerHandshakerWebSocketServerProtocolHandler. getHandshaker(Channel channel)ChannelFutureWebSocketClientHandshaker. handshake(Channel channel)Begins the opening handshakeChannelFutureWebSocketClientHandshaker. handshake(Channel channel, ChannelPromise promise)Begins the opening handshakeChannelFutureWebSocketServerHandshaker. handshake(Channel channel, FullHttpRequest req)Performs the opening handshake.ChannelFutureWebSocketServerHandshaker. handshake(Channel channel, FullHttpRequest req, HttpHeaders responseHeaders, ChannelPromise promise)Performs the opening handshake When call this method you MUST NOT retain theFullHttpRequestwhich is passed in.ChannelFutureWebSocketServerHandshaker. handshake(Channel channel, HttpRequest req)Performs the opening handshake.ChannelFutureWebSocketServerHandshaker. handshake(Channel channel, HttpRequest req, HttpHeaders responseHeaders, ChannelPromise promise)Performs the opening handshake When call this method you MUST NOT retain theHttpRequestwhich is passed in.ChannelFutureWebSocketClientHandshaker. processHandshake(Channel channel, HttpResponse response)Process the opening handshake initiated byWebSocketClientHandshaker.handshake(io.netty.channel.Channel)}.ChannelFutureWebSocketClientHandshaker. processHandshake(Channel channel, HttpResponse response, ChannelPromise promise)Process the opening handshake initiated byWebSocketClientHandshaker.handshake(io.netty.channel.Channel)}.static ChannelFutureWebSocketServerHandshakerFactory. sendUnsupportedVersionResponse(Channel channel)Return that we need cannot not support the web socket versionstatic ChannelFutureWebSocketServerHandshakerFactory. sendUnsupportedVersionResponse(Channel channel, ChannelPromise promise)Return that we need cannot not support the web socket versionstatic voidWebSocketServerHandshakerFactory. sendUnsupportedWebSocketVersionResponse(Channel channel)(package private) static voidWebSocketServerProtocolHandler. setHandshaker(Channel channel, WebSocketServerHandshaker handshaker) -
Uses of Channel in io.netty.handler.codec.http2
Subinterfaces of Channel in io.netty.handler.codec.http2 Modifier and Type Interface Description interfaceHttp2StreamChannelClasses in io.netty.handler.codec.http2 that implement Channel Modifier and Type Class Description (package private) classAbstractHttp2StreamChannelprivate classHttp2MultiplexCodec.Http2MultiplexCodecStreamChannelDeprecated.private classHttp2MultiplexHandler.Http2MultiplexHandlerStreamChannelFields in io.netty.handler.codec.http2 declared as Channel Modifier and Type Field Description (package private) ChannelHttp2FrameCodec.DefaultHttp2FrameStream. attachmentprivate ChannelHttp2StreamChannelBootstrap. channelMethods in io.netty.handler.codec.http2 that return Channel Modifier and Type Method Description private static ChannelHttp2StreamFrameToHttpObjectCodec. connectionChannel(ChannelHandlerContext ctx)ChannelAbstractHttp2StreamChannel. flush()ChannelAbstractHttp2StreamChannel. parent()ChannelAbstractHttp2StreamChannel. read()Methods in io.netty.handler.codec.http2 with parameters of type Channel Modifier and Type Method Description intAbstractHttp2StreamChannel. compareTo(Channel o)private voidHttp2StreamChannelBootstrap. init(Channel channel)private static voidHttp2StreamChannelBootstrap. setAttributes(Channel channel, java.util.Map.Entry<AttributeKey<?>,java.lang.Object>[] options)private static voidHttp2StreamChannelBootstrap. setChannelOption(Channel channel, ChannelOption<?> option, java.lang.Object value)private static voidHttp2StreamChannelBootstrap. setChannelOptions(Channel channel, java.util.Map.Entry<ChannelOption<?>,java.lang.Object>[] options)private static voidAbstractHttp2StreamChannel. windowUpdateFrameWriteComplete(ChannelFuture future, Channel streamChannel)Constructors in io.netty.handler.codec.http2 with parameters of type Channel Constructor Description Http2StreamChannelBootstrap(Channel channel)Http2StreamChannelConfig(Channel channel)SimpleChannelPromiseAggregator(ChannelPromise promise, Channel c, EventExecutor e) -
Uses of Channel in io.netty.handler.proxy
Methods in io.netty.handler.proxy that return types with arguments of type Channel Modifier and Type Method Description Future<Channel>ProxyHandler. connectFuture()Returns aFuturethat is notified when the connection to the destination has been established or the connection attempt has failed. -
Uses of Channel in io.netty.handler.ssl
Fields in io.netty.handler.ssl with type parameters of type Channel Modifier and Type Field Description private Promise<Channel>SslHandler. handshakePromiseMethods in io.netty.handler.ssl that return types with arguments of type Channel Modifier and Type Method Description Future<Channel>SslHandler. handshakeFuture()Returns aFuturethat will get notified once the current TLS handshake completes.Future<Channel>SslHandler. renegotiate()Performs TLS renegotiation.Future<Channel>SslHandler. renegotiate(Promise<Channel> promise)Performs TLS renegotiation.Future<Channel>SslHandler. sslCloseFuture()Return theFuturethat will get notified if the inbound of theSSLEngineis closed.Method parameters in io.netty.handler.ssl with type arguments of type Channel Modifier and Type Method Description Future<Channel>SslHandler. renegotiate(Promise<Channel> promise)Performs TLS renegotiation.private voidSslHandler. renegotiateOnEventLoop(Promise<Channel> newHandshakePromise)Constructors in io.netty.handler.ssl with parameters of type Channel Constructor Description SslHandlerCoalescingBufferQueue(Channel channel, int initSize) -
Uses of Channel in io.netty.resolver.dns
Fields in io.netty.resolver.dns declared as Channel Modifier and Type Field Description (package private) ChannelDnsNameResolver. chprivate ChannelTcpDnsQueryContext. channelFields in io.netty.resolver.dns with type parameters of type Channel Modifier and Type Field Description private Promise<Channel>DnsNameResolver.DnsResponseHandler. channelActivePromise(package private) Future<Channel>DnsNameResolver. channelFutureMethods in io.netty.resolver.dns that return Channel Modifier and Type Method Description protected ChannelDatagramDnsQueryContext. channel()protected abstract ChannelDnsQueryContext. channel()protected ChannelTcpDnsQueryContext. channel()Constructors in io.netty.resolver.dns with parameters of type Channel Constructor Description TcpDnsQueryContext(DnsNameResolver parent, Channel channel, java.net.InetSocketAddress nameServerAddr, DnsQuestion question, DnsRecord[] additionals, Promise<AddressedEnvelope<DnsResponse,java.net.InetSocketAddress>> promise)Constructor parameters in io.netty.resolver.dns with type arguments of type Channel Constructor Description DnsResponseHandler(Promise<Channel> channelActivePromise)
-