Uses of Interface
io.netty5.util.concurrent.FuturePromiseFactory
-
Packages that use FuturePromiseFactory 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 virtualChannel
that 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.io.netty5.util.concurrent Utility classes for concurrent / async tasks. -
-
Uses of FuturePromiseFactory in io.netty5.channel
Subinterfaces of FuturePromiseFactory in io.netty5.channel Modifier and Type Interface Description interface
Channel
A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.interface
ChannelHandlerContext
Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.interface
ChannelOutboundInvoker
interface
ChannelPipeline
A list ofChannelHandler
s which handles or intercepts inbound events and outbound operations of aChannel
.interface
EventLoop
Will handle all the I/O operations for aIoHandle
once registered.interface
ServerChannel
Classes in io.netty5.channel that implement FuturePromiseFactory Modifier and Type Class Description class
AbstractChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>
A skeletalChannel
implementation.protected static class
AbstractChannel.DefaultAbstractChannelPipeline
class
AbstractServerChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>
A skeletal server-sideChannel
implementation.class
DefaultChannelPipeline
The defaultChannelPipeline
implementation.class
SingleThreadEventLoop
-
Uses of FuturePromiseFactory in io.netty5.channel.embedded
Classes in io.netty5.channel.embedded that implement FuturePromiseFactory Modifier and Type Class Description class
EmbeddedChannel
Base class forChannel
implementations that are used in an embedded fashion. -
Uses of FuturePromiseFactory in io.netty5.channel.epoll
Classes in io.netty5.channel.epoll that implement FuturePromiseFactory Modifier and Type Class Description class
EpollDatagramChannel
DatagramChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.class
EpollServerSocketChannel
ServerSocketChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.class
EpollSocketChannel
SocketChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance. -
Uses of FuturePromiseFactory in io.netty5.channel.internal
Classes in io.netty5.channel.internal that implement FuturePromiseFactory Modifier and Type Class Description class
DelegatingChannelHandlerContext
-
Uses of FuturePromiseFactory in io.netty5.channel.kqueue
Classes in io.netty5.channel.kqueue that implement FuturePromiseFactory Modifier and Type Class Description class
KQueueDatagramChannel
DatagramChannel
implementation that uses KQueue.class
KQueueServerSocketChannel
ServerSocketChannel
implementation that uses KQueue.class
KQueueSocketChannel
SocketChannel
implementation that uses KQueue. -
Uses of FuturePromiseFactory in io.netty5.channel.local
Classes in io.netty5.channel.local that implement FuturePromiseFactory Modifier and Type Class Description class
LocalChannel
AChannel
for the local transport.class
LocalServerChannel
AServerChannel
for the local transport which allows in VM communication. -
Uses of FuturePromiseFactory in io.netty5.channel.nio
Classes in io.netty5.channel.nio that implement FuturePromiseFactory Modifier and Type Class Description class
AbstractNioByteChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>
AbstractNioChannel
base class forChannel
s that operate on bytes.class
AbstractNioChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>
Abstract base class forChannel
implementations which use a Selector based approach.class
AbstractNioMessageChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>
AbstractNioChannel
base class forChannel
s that operate on messages. -
Uses of FuturePromiseFactory in io.netty5.channel.socket
Subinterfaces of FuturePromiseFactory in io.netty5.channel.socket Modifier and Type Interface Description interface
DatagramChannel
A UDP/IPChannel
.interface
ServerSocketChannel
A SocketServerChannel
which accepts incoming Socket connections.interface
SocketChannel
A SocketChannel
. -
Uses of FuturePromiseFactory in io.netty5.channel.socket.nio
Classes in io.netty5.channel.socket.nio that implement FuturePromiseFactory Modifier and Type Class Description class
NioDatagramChannel
An NIODatagramChannel
that sends and receives anAddressedEnvelope
.class
NioServerSocketChannel
AServerSocketChannel
implementation which uses NIO selector based implementation to accept new connections.class
NioSocketChannel
SocketChannel
which uses NIO selector based implementation. -
Uses of FuturePromiseFactory in io.netty5.channel.unix
Subinterfaces of FuturePromiseFactory in io.netty5.channel.unix Modifier and Type Interface Description interface
UnixChannel
Channel
that expose operations that are only present onUNIX
like systems. -
Uses of FuturePromiseFactory in io.netty5.handler.codec.http2
Subinterfaces of FuturePromiseFactory in io.netty5.handler.codec.http2 Modifier and Type Interface Description interface
Http2StreamChannel
-
Uses of FuturePromiseFactory in io.netty5.util.concurrent
Subinterfaces of FuturePromiseFactory in io.netty5.util.concurrent Modifier and Type Interface Description interface
EventExecutor
TheEventExecutor
is a specialEventExecutorGroup
which comes with some handy methods to see if aThread
is executed in a event loop.interface
OrderedEventExecutor
Marker interface forEventExecutor
s that will process all submitted tasks in an ordered / serial fashion.Classes in io.netty5.util.concurrent that implement FuturePromiseFactory Modifier and Type Class Description class
AbstractEventExecutor
Abstract base class forEventExecutor
implementations.class
AbstractScheduledEventExecutor
Abstract base class forEventExecutor
s that want to support scheduling.class
GlobalEventExecutor
Single-thread singletonEventExecutor
.class
ImmediateEventExecutor
ExecutesRunnable
objects in the caller's thread.class
SingleThreadEventExecutor
OrderedEventExecutor
's implementation that execute all its submitted tasks in a single thread.class
UnorderedThreadPoolEventExecutor
EventExecutor
implementation which makes no guarantees about the ordering of task execution that are submitted because there may be multiple threads executing these tasks.
-