Uses of Interface
io.netty5.channel.ChannelOutboundInvoker
-
Packages that use ChannelOutboundInvoker Package Description io.netty5.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty5.channel.embedded A virtualChannelthat helps wrapping a series of handlers to unit test the handlers or use them in non-I/O context.io.netty5.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty5.channel.internal Internal utilities for channel implementations.io.netty5.channel.kqueue BSD specific transport.io.netty5.channel.local A virtual transport that enables the communication between the two parties in the same virtual machine.io.netty5.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty5.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.io.netty5.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).io.netty5.channel.unix Unix specific transport.io.netty5.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of ChannelOutboundInvoker in io.netty5.channel
Subinterfaces of ChannelOutboundInvoker in io.netty5.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.netty5.channel that implement ChannelOutboundInvoker Modifier and Type Class Description classAbstractChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>A skeletalChannelimplementation.protected static classAbstractChannel.DefaultAbstractChannelPipelineclassAbstractServerChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>A skeletal server-sideChannelimplementation.classDefaultChannelPipelineThe defaultChannelPipelineimplementation.Fields in io.netty5.channel with type parameters of type ChannelOutboundInvoker Modifier and Type Field Description static FutureContextListener<ChannelOutboundInvoker,Object>ChannelFutureListeners. CLOSEAFutureContextListenerthat closes theChannelOutboundInvokerwhich is associated with the specifiedFuture.static FutureContextListener<ChannelOutboundInvoker,Object>ChannelFutureListeners. CLOSE_ON_FAILUREAFutureContextListenerthat closes theChannelOutboundInvokerwhen the operation ended up with a failure or cancellation rather than a success.Methods in io.netty5.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 anChannelHandler.channelRead(ChannelHandlerContext, Object)event if data was read, and triggers achannelReadCompleteevent so the handler can decide to continue reading.Methods in io.netty5.channel with parameters of type ChannelOutboundInvoker Modifier and Type Method Description voidAbstractCoalescingBufferQueue. releaseAndFailAll(ChannelOutboundInvoker invoker, Throwable cause)Release all buffers in the queue and complete all listeners and promises. -
Uses of ChannelOutboundInvoker in io.netty5.channel.embedded
Classes in io.netty5.channel.embedded that implement ChannelOutboundInvoker Modifier and Type Class Description classEmbeddedChannelBase class forChannelimplementations that are used in an embedded fashion. -
Uses of ChannelOutboundInvoker in io.netty5.channel.epoll
Classes in io.netty5.channel.epoll that implement ChannelOutboundInvoker Modifier and Type Class Description classEpollDatagramChannelDatagramChannelimplementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.classEpollServerSocketChannelServerSocketChannelimplementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.classEpollSocketChannelSocketChannelimplementation that uses linux EPOLL Edge-Triggered Mode for maximal performance. -
Uses of ChannelOutboundInvoker in io.netty5.channel.internal
Classes in io.netty5.channel.internal that implement ChannelOutboundInvoker Modifier and Type Class Description classDelegatingChannelHandlerContext -
Uses of ChannelOutboundInvoker in io.netty5.channel.kqueue
Classes in io.netty5.channel.kqueue that implement ChannelOutboundInvoker Modifier and Type Class Description classKQueueDatagramChannelDatagramChannelimplementation that uses KQueue.classKQueueServerSocketChannelServerSocketChannelimplementation that uses KQueue.classKQueueSocketChannelSocketChannelimplementation that uses KQueue. -
Uses of ChannelOutboundInvoker in io.netty5.channel.local
Classes in io.netty5.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.netty5.channel.nio
Classes in io.netty5.channel.nio that implement ChannelOutboundInvoker Modifier and Type Class Description classAbstractNioByteChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>AbstractNioChannelbase class forChannels that operate on bytes.classAbstractNioChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>Abstract base class forChannelimplementations which use a Selector based approach.classAbstractNioMessageChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>AbstractNioChannelbase class forChannels that operate on messages. -
Uses of ChannelOutboundInvoker in io.netty5.channel.socket
Subinterfaces of ChannelOutboundInvoker in io.netty5.channel.socket Modifier and Type Interface Description interfaceDatagramChannelA UDP/IPChannel.interfaceServerSocketChannelA SocketServerChannelwhich accepts incoming Socket connections.interfaceSocketChannelA SocketChannel. -
Uses of ChannelOutboundInvoker in io.netty5.channel.socket.nio
Classes in io.netty5.channel.socket.nio that implement ChannelOutboundInvoker Modifier and Type Class Description classNioDatagramChannelAn NIODatagramChannelthat 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.netty5.channel.unix
Subinterfaces of ChannelOutboundInvoker in io.netty5.channel.unix Modifier and Type Interface Description interfaceUnixChannelChannelthat expose operations that are only present onUNIXlike systems. -
Uses of ChannelOutboundInvoker in io.netty5.handler.codec.http2
Subinterfaces of ChannelOutboundInvoker in io.netty5.handler.codec.http2 Modifier and Type Interface Description interfaceHttp2StreamChannel
-