Uses of Interface
io.netty.channel.ChannelOutboundInvoker
-
Packages that use ChannelOutboundInvoker 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.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.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.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of ChannelOutboundInvoker in io.netty.bootstrap
Classes in io.netty.bootstrap that implement ChannelOutboundInvoker Modifier and Type Class Description (package private) classFailedChannel -
Uses of ChannelOutboundInvoker in io.netty.channel
Subinterfaces of ChannelOutboundInvoker in io.netty.channel Modifier and Type Interface Description interfaceChannelA nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.interfaceChannelHandlerContextEnables aChannelHandlerto interact with itsChannelPipelineand other handlers.interfaceChannelPipelineA list ofChannelHandlers which handles or intercepts inbound events and outbound operations of aChannel.interfaceServerChannelClasses in io.netty.channel that implement ChannelOutboundInvoker Modifier and Type Class Description classAbstractChannelA skeletalChannelimplementation.(package private) classAbstractChannelHandlerContextclassAbstractServerChannelA skeletal server-sideChannelimplementation.private static classCombinedChannelDuplexHandler.DelegatingChannelHandlerContext(package private) classDefaultChannelHandlerContextclassDefaultChannelPipelineThe defaultChannelPipelineimplementation.(package private) classDefaultChannelPipeline.HeadContext(package private) classDefaultChannelPipeline.TailContextMethods in io.netty.channel that return ChannelOutboundInvoker Modifier and Type Method Description ChannelOutboundInvokerChannelOutboundInvoker. flush()Request to flush all pending messages via this ChannelOutboundInvoker.ChannelOutboundInvokerChannelOutboundInvoker. read()Request to Read data from theChannelinto the first inbound buffer, triggers anChannelInboundHandler.channelRead(ChannelHandlerContext, Object)event if data was read, and triggers achannelReadCompleteevent so the handler can decide to continue reading.Methods in io.netty.channel with parameters of type ChannelOutboundInvoker Modifier and Type Method Description voidAbstractCoalescingBufferQueue. releaseAndFailAll(ChannelOutboundInvoker invoker, java.lang.Throwable cause)Release all buffers in the queue and complete all listeners and promises. -
Uses of ChannelOutboundInvoker in io.netty.channel.embedded
Classes in io.netty.channel.embedded that implement ChannelOutboundInvoker Modifier and Type Class Description classEmbeddedChannelBase class forChannelimplementations that are used in an embedded fashion.private classEmbeddedChannel.EmbeddedChannelPipeline -
Uses of ChannelOutboundInvoker in io.netty.channel.local
Classes in io.netty.channel.local that implement ChannelOutboundInvoker Modifier and Type Class Description classLocalChannelAChannelfor the local transport.classLocalServerChannelAServerChannelfor the local transport which allows in VM communication. -
Uses of ChannelOutboundInvoker in io.netty.channel.nio
Classes in io.netty.channel.nio that implement ChannelOutboundInvoker 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. -
Uses of ChannelOutboundInvoker in io.netty.channel.oio
Classes in io.netty.channel.oio that implement ChannelOutboundInvoker 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. -
Uses of ChannelOutboundInvoker in io.netty.channel.socket
Subinterfaces of ChannelOutboundInvoker 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 ChannelOutboundInvoker in io.netty.channel.socket.nio
Classes in io.netty.channel.socket.nio that implement ChannelOutboundInvoker 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. -
Uses of ChannelOutboundInvoker in io.netty.channel.socket.oio
Classes in io.netty.channel.socket.oio that implement ChannelOutboundInvoker Modifier and Type Class Description classOioDatagramChannelDeprecated.use NIO / EPOLL / KQUEUE transport.classOioServerSocketChannelDeprecated.use NIO / EPOLL / KQUEUE transport.classOioSocketChannelDeprecated.use NIO / EPOLL / KQUEUE transport. -
Uses of ChannelOutboundInvoker in io.netty.handler.codec.http2
Subinterfaces of ChannelOutboundInvoker in io.netty.handler.codec.http2 Modifier and Type Interface Description interfaceHttp2StreamChannelClasses in io.netty.handler.codec.http2 that implement ChannelOutboundInvoker Modifier and Type Class Description (package private) classAbstractHttp2StreamChannelprivate classHttp2MultiplexCodec.Http2MultiplexCodecStreamChannelDeprecated.private classHttp2MultiplexHandler.Http2MultiplexHandlerStreamChannel
-