Uses of Interface
io.netty.channel.ChannelOutboundInvoker
Packages that use ChannelOutboundInvoker
Package
Description
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
A virtual
Channel that helps wrapping a series of handlers to
unit test the handlers or use them in non-I/O context.Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
BSD specific transport.
A virtual transport that enables the communication between the two
parties in the same virtual machine.
NIO-based channel
API implementation - recommended for a large number of connections (>= 1000).
Old blocking I/O based channel API implementation - recommended for
a small number of connections (< 1000).
A serial and parallel port communication transport based on RXTX.
Abstract SCTP socket interfaces which extend the core channel API.
NIO-based SCTP Channel
API implementation - recommended for a large number of connections (>= 1000).
Old blocking I/O based SCTP channel API implementation - recommended for
a small number of connections (< 1000).
Abstract TCP and UDP socket interfaces which extend the core channel API.
NIO-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
Old blocking I/O based socket channel API implementation - recommended for
a small number of connections (< 1000).
UDT Transport.
UDT Transport for NIO Channels.
Unix specific transport.
io_uring is a high I/O performance scalable interface for fully
asynchronous Linux syscalls.
Handlers for sending and receiving HTTP/2 frames.
QUIC implementation
-
Uses of ChannelOutboundInvoker in io.netty.channel
Subinterfaces of ChannelOutboundInvoker in io.netty.channelModifier and TypeInterfaceDescriptioninterfaceA nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.interfaceEnables aChannelHandlerto interact with itsChannelPipelineand other handlers.interfaceA list ofChannelHandlers which handles or intercepts inbound events and outbound operations of aChannel.interfaceClasses in io.netty.channel that implement ChannelOutboundInvokerModifier and TypeClassDescriptionclassA skeletalChannelimplementation.classA skeletal server-sideChannelimplementation.classThe defaultChannelPipelineimplementation.Methods in io.netty.channel that return ChannelOutboundInvokerModifier and TypeMethodDescriptionChannelOutboundInvoker.flush()Request to flush all pending messages via this ChannelOutboundInvoker.ChannelOutboundInvoker.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 ChannelOutboundInvokerModifier and TypeMethodDescriptionfinal voidAbstractCoalescingBufferQueue.releaseAndFailAll(ChannelOutboundInvoker invoker, 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 ChannelOutboundInvokerModifier and TypeClassDescriptionclassBase class forChannelimplementations that are used in an embedded fashion. -
Uses of ChannelOutboundInvoker in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement ChannelOutboundInvokerModifier and TypeClassDescriptionclassclassfinal classDatagramChannelimplementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.final classfinal classfinal classfinal classServerSocketChannelimplementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.final classSocketChannelimplementation that uses linux EPOLL Edge-Triggered Mode for maximal performance. -
Uses of ChannelOutboundInvoker in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement ChannelOutboundInvokerModifier and TypeClassDescriptionclassclassfinal classfinal classfinal classfinal classfinal classfinal class -
Uses of ChannelOutboundInvoker in io.netty.channel.local
Classes in io.netty.channel.local that implement ChannelOutboundInvokerModifier and TypeClassDescriptionclassAChannelfor the local transport.classAServerChannelfor the local transport which allows in VM communication. -
Uses of ChannelOutboundInvoker in io.netty.channel.nio
Classes in io.netty.channel.nio that implement ChannelOutboundInvokerModifier and TypeClassDescriptionclassAbstractNioChannelbase class forChannels that operate on bytes.classAbstract base class forChannelimplementations which use a Selector based approach.classAbstractNioChannelbase class forChannels that operate on messages. -
Uses of ChannelOutboundInvoker in io.netty.channel.oio
Classes in io.netty.channel.oio that implement ChannelOutboundInvokerModifier and TypeClassDescriptionclassDeprecated.use NIO / EPOLL / KQUEUE transport.classDeprecated.use NIO / EPOLL / KQUEUE transport.classDeprecated.use NIO / EPOLL / KQUEUE transport.classDeprecated.use NIO / EPOLL / KQUEUE transport. -
Uses of ChannelOutboundInvoker in io.netty.channel.rxtx
Classes in io.netty.channel.rxtx that implement ChannelOutboundInvokerModifier and TypeClassDescriptionclassDeprecated.this transport will be removed in the next major version. -
Uses of ChannelOutboundInvoker in io.netty.channel.sctp
Subinterfaces of ChannelOutboundInvoker in io.netty.channel.sctpModifier and TypeInterfaceDescriptioninterfaceA SCTP/IPChannelinterface for single SCTP association.interfaceA SCTP/IPServerChannelwhich accepts incoming SCTP/IP associations. -
Uses of ChannelOutboundInvoker in io.netty.channel.sctp.nio
Classes in io.netty.channel.sctp.nio that implement ChannelOutboundInvokerModifier and TypeClassDescriptionclassSctpChannelimplementation which use non-blocking mode and allows to read / writeSctpMessages to the underlyingSctpChannel.classSctpServerChannelimplementation which use non-blocking mode to accept new connections and create theNioSctpChannelfor them. -
Uses of ChannelOutboundInvoker in io.netty.channel.sctp.oio
Classes in io.netty.channel.sctp.oio that implement ChannelOutboundInvokerModifier and TypeClassDescriptionclassDeprecated.useNioSctpChannel.classDeprecated.useNioSctpServerChannel. -
Uses of ChannelOutboundInvoker in io.netty.channel.socket
Subinterfaces of ChannelOutboundInvoker in io.netty.channel.socketModifier and TypeInterfaceDescriptioninterfaceA UDP/IPChannel.interfaceA duplexChannelthat has two sides that can be shutdown independently.interfaceA TCP/IPServerChannelwhich accepts incoming TCP/IP connections.interfaceA TCP/IP socketChannel. -
Uses of ChannelOutboundInvoker in io.netty.channel.socket.nio
Classes in io.netty.channel.socket.nio that implement ChannelOutboundInvokerModifier and TypeClassDescriptionfinal classAn NIO datagramChannelthat sends and receives anAddressedEnvelopeinvalid input: '<'ByteBuf, SocketAddress>.final classDuplexChannelwhich uses NIO selector based implementation to support UNIX Domain Sockets.final classAServerChannelimplementation which uses NIO selector based implementation to support UNIX Domain Sockets.classAServerSocketChannelimplementation which uses NIO selector based implementation to accept new connections.classSocketChannelwhich uses NIO selector based implementation. -
Uses of ChannelOutboundInvoker in io.netty.channel.socket.oio
Classes in io.netty.channel.socket.oio that implement ChannelOutboundInvokerModifier and TypeClassDescriptionclassDeprecated.use NIO / EPOLL / KQUEUE transport.classDeprecated.use NIO / EPOLL / KQUEUE transport.classDeprecated.use NIO / EPOLL / KQUEUE transport. -
Uses of ChannelOutboundInvoker in io.netty.channel.udt
Subinterfaces of ChannelOutboundInvoker in io.netty.channel.udtModifier and TypeInterfaceDescriptioninterfaceDeprecated.The UDT transport is no longer maintained and will be removed.interfaceDeprecated.The UDT transport is no longer maintained and will be removed. -
Uses of ChannelOutboundInvoker in io.netty.channel.udt.nio
Classes in io.netty.channel.udt.nio that implement ChannelOutboundInvokerModifier and TypeClassDescriptionclassDeprecated.The UDT transport is no longer maintained and will be removed.classDeprecated.The UDT transport is no longer maintained and will be removed.classDeprecated.The UDT transport is no longer maintained and will be removed.classDeprecated.The UDT transport is no longer maintained and will be removed.classDeprecated.The UDT transport is no longer maintained and will be removed.classDeprecated.The UDT transport is no longer maintained and will be removed.classDeprecated.The UDT transport is no longer maintained and will be removed. -
Uses of ChannelOutboundInvoker in io.netty.channel.unix
Subinterfaces of ChannelOutboundInvoker in io.netty.channel.unixModifier and TypeInterfaceDescriptioninterfaceAUnixChannelthat supports communication via UNIX domain datagram sockets.interfaceAUnixChannelthat supports communication via Unix Domain Socket.interfaceinterfaceChannelthat expose operations that are only present onUNIXlike systems. -
Uses of ChannelOutboundInvoker in io.netty.channel.uring
Classes in io.netty.channel.uring that implement ChannelOutboundInvokerModifier and TypeClassDescriptionfinal classfinal classDomainSocketChannelimplementation that uses linux io_uringfinal classfinal classfinal class -
Uses of ChannelOutboundInvoker in io.netty.handler.codec.http2
Subinterfaces of ChannelOutboundInvoker in io.netty.handler.codec.http2 -
Uses of ChannelOutboundInvoker in io.netty.handler.codec.quic
Subinterfaces of ChannelOutboundInvoker in io.netty.handler.codec.quic