程序包 | 说明 |
---|---|
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 virtual
Channel that helps wrapping a series of handlers to
unit test the handlers or use them in non-I/O context. |
io.netty.channel.epoll |
Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
|
io.netty.channel.group |
A channel registry which helps a user maintain the list of open
Channel s 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 for
Channel pools. |
io.netty.channel.rxtx |
A serial and parallel port communication transport based on RXTX.
|
io.netty.channel.sctp |
Abstract SCTP socket interfaces which extend the core channel API.
|
io.netty.channel.sctp.nio |
NIO-based SCTP Channel
API implementation - recommended for a large number of connections (>= 1000).
|
io.netty.channel.sctp.oio |
Old blocking I/O based SCTP 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.channel.udt |
UDT Transport.
|
io.netty.channel.udt.nio |
UDT Transport for NIO Channels.
|
io.netty.channel.unix |
Unix specific transport.
|
io.netty.example.discard | |
io.netty.example.echo | |
io.netty.example.factorial | |
io.netty.example.file | |
io.netty.example.http.cors | |
io.netty.example.http.file | |
io.netty.example.http.helloworld | |
io.netty.example.http.snoop | |
io.netty.example.http.upload | |
io.netty.example.http.websocketx.benchmarkserver |
This package contains a benchmark application for websockets.
|
io.netty.example.http.websocketx.client | |
io.netty.example.http.websocketx.server |
This package contains an example web socket web server.
|
io.netty.example.localecho | |
io.netty.example.objectecho | |
io.netty.example.portunification | |
io.netty.example.proxy | |
io.netty.example.qotm | |
io.netty.example.rxtx | |
io.netty.example.sctp | |
io.netty.example.securechat | |
io.netty.example.socksproxy | |
io.netty.example.spdy.client |
This package contains an example SPDY HTTP client.
|
io.netty.example.spdy.server |
This package contains an example SPDY HTTP web server.
|
io.netty.example.telnet | |
io.netty.example.udt.echo.bytes |
Examples show how to use UDT Byte Streams.
|
io.netty.example.udt.echo.message |
Examples show how to use UDT Message Flows.
|
io.netty.example.udt.echo.rendezvous |
Examples show how to use UDT Message Rendezvous.
|
io.netty.example.udt.echo.rendezvousBytes |
Examples show how to use UDT Byte Streams Rendezvous.
|
io.netty.example.uptime | |
io.netty.example.worldclock | |
io.netty.handler.codec |
Extensible decoder and its common implementations which deal with the
packet fragmentation and reassembly issue found in a stream-based transport
such as TCP/IP.
|
io.netty.handler.codec.base64 | |
io.netty.handler.codec.bytes |
Encoder and decoder which transform an array of bytes into a
ByteBuf and vice versa. |
io.netty.handler.codec.compression | |
io.netty.handler.codec.haproxy |
Decodes an HAProxy proxy protocol header
|
io.netty.handler.codec.http |
Encoder, decoder and their related message types for HTTP.
|
io.netty.handler.codec.http.cors |
This package contains Cross Origin Resource Sharing (CORS) related classes.
|
io.netty.handler.codec.http.multipart |
HTTP multipart support.
|
io.netty.handler.codec.http.websocketx |
Encoder, decoder, handshakers and their related message types for
Web Socket data frames.
|
io.netty.handler.codec.marshalling |
Decoder and Encoder which uses JBoss Marshalling.
|
io.netty.handler.codec.protobuf |
Encoder and decoder which transform a
Google Protocol Buffers
com.google.protobuf.Message into a ByteBuf
and vice versa. |
io.netty.handler.codec.rtsp |
An RTSP
extension based on the HTTP codec.
|
io.netty.handler.codec.sctp |
Decoder and encoders to manage message completion and multi-streaming codec in SCTP/IP.
|
io.netty.handler.codec.serialization |
Encoder, decoder and their compatibility stream implementations which
transform a
Serializable object into a byte buffer and
vice versa. |
io.netty.handler.codec.socks |
Encoder, decoder and their related message types for Socks.
|
io.netty.handler.codec.spdy |
Encoder, decoder, session handler and their related message types for the SPDY protocol.
|
io.netty.handler.codec.string |
Encoder and decoder which transform a
String into a
ByteBuf and vice versa. |
io.netty.handler.flush |
Package to control flush behavior.
|
io.netty.handler.ipfilter |
Package to filter IP addresses (allow/deny).
|
io.netty.handler.logging |
Logs a
io.netty.channel.ChannelEvent for debugging purpose. |
io.netty.handler.ssl |
SSL ·
TLS implementation based on
SSLEngine |
io.netty.handler.ssl.ocsp |
OCSP stapling,
formally known as the TLS Certificate Status Request extension, is an
alternative approach to the Online Certificate Status Protocol (OCSP)
for checking the revocation status of X.509 digital certificates.
|
io.netty.handler.stream |
Writes very large data stream asynchronously neither spending a lot of
memory nor getting
OutOfMemoryError . |
io.netty.handler.timeout |
Adds support for read and write timeout and idle connection notification
using a
Timer . |
io.netty.handler.traffic |
Implementation of a Traffic Shaping Handler and Dynamic Statistics.
|
类和说明 |
---|
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelOption
A
ChannelOption allows to configure a ChannelConfig in a type-safe
way. |
EventLoopGroup
Special
EventExecutorGroup which allows registering Channel s that get
processed for later selection during the event loop. |
类和说明 |
---|
AbstractChannel
A skeletal
Channel implementation. |
AbstractChannel.AbstractUnsafe
Unsafe implementation which sub-classes must extend and use. |
AdaptiveRecvByteBufAllocator
The
RecvByteBufAllocator that automatically increases and
decreases the predicted buffer size on feed back. |
AddressedEnvelope
A message that wraps another message with a sender address and a recipient address.
|
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
Channel.Unsafe
Unsafe operations that should never be called from user-code.
|
ChannelConfig
A set of configuration properties of a
Channel . |
ChannelDuplexHandler
ChannelHandler implementation which represents a combination out of a ChannelInboundHandler and
the ChannelOutboundHandler . |
ChannelException
A
RuntimeException which is thrown when an I/O operation fails. |
ChannelFlushPromiseNotifier
This implementation allows to register
ChannelFuture instances which will get notified once some amount of
data was written and so a checkpoint was reached. |
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
ChannelFutureListener
Listens to the result of a
ChannelFuture . |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelMetadata
Represents the properties of a
Channel implementation. |
ChannelOption
A
ChannelOption allows to configure a ChannelConfig in a type-safe
way. |
ChannelOutboundBuffer
(Transport implementors only) an internal data structure used by
AbstractChannel to store its pending
outbound write requests. |
ChannelOutboundBuffer.MessageProcessor |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelPipeline
A list of
ChannelHandler s which handles or intercepts inbound events and outbound operations of a
Channel . |
ChannelProgressiveFuture
An special
ChannelFuture which is used to indicate the FileRegion transfer progress |
ChannelProgressivePromise
Special
ChannelPromise which will be notified once the associated bytes is transferring. |
ChannelPromise
Special
ChannelFuture which is writable. |
DefaultChannelPipeline
The default
ChannelPipeline implementation. |
EventLoop
Will handle all the I/O operations for a
Channel once registered. |
EventLoopGroup
Special
EventExecutorGroup which allows registering Channel s that get
processed for later selection during the event loop. |
FileRegion
A region of a file that is sent via a
Channel which supports
zero-copy file transfer. |
MessageSizeEstimator
Responsible to estimate size of a message.
|
MessageSizeEstimator.Handle |
RecvByteBufAllocator
Allocates a new receive buffer whose capacity is probably large enough to read all inbound data and small enough
not to waste its space.
|
RecvByteBufAllocator.Handle |
SelectStrategy
Select strategy interface.
|
SelectStrategyFactory
Factory that creates a new
SelectStrategy every time. |
ServerChannel |
SingleThreadEventLoop
Abstract base class for
EventLoop 's that execute all its submitted tasks in a single thread. |
ThreadPerChannelEventLoop
SingleThreadEventLoop which is used to handle OIO Channel 's. |
ThreadPerChannelEventLoopGroup |
类和说明 |
---|
AbstractChannel
A skeletal
Channel implementation. |
AbstractChannel.AbstractUnsafe
Unsafe implementation which sub-classes must extend and use. |
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
Channel.Unsafe
Unsafe operations that should never be called from user-code.
|
ChannelConfig
A set of configuration properties of a
Channel . |
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelMetadata
Represents the properties of a
Channel implementation. |
ChannelOutboundBuffer
(Transport implementors only) an internal data structure used by
AbstractChannel to store its pending
outbound write requests. |
ChannelPromise
Special
ChannelFuture which is writable. |
DefaultChannelPipeline
The default
ChannelPipeline implementation. |
EventLoop
Will handle all the I/O operations for a
Channel once registered. |
类和说明 |
---|
AbstractChannel
A skeletal
Channel implementation. |
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelConfig
A set of configuration properties of a
Channel . |
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
ChannelMetadata
Represents the properties of a
Channel implementation. |
ChannelOption
A
ChannelOption allows to configure a ChannelConfig in a type-safe
way. |
ChannelOutboundBuffer
(Transport implementors only) an internal data structure used by
AbstractChannel to store its pending
outbound write requests. |
ChannelPromise
Special
ChannelFuture which is writable. |
DefaultChannelConfig
The default
SocketChannelConfig implementation. |
DefaultFileRegion |
EventLoop
Will handle all the I/O operations for a
Channel once registered. |
EventLoopGroup
Special
EventExecutorGroup which allows registering Channel s that get
processed for later selection during the event loop. |
MessageSizeEstimator
Responsible to estimate size of a message.
|
MultithreadEventLoopGroup
Abstract base class for
EventLoopGroup implementations that handles their tasks with multiple threads at
the same time. |
RecvByteBufAllocator
Allocates a new receive buffer whose capacity is probably large enough to read all inbound data and small enough
not to waste its space.
|
RecvByteBufAllocator.Handle |
SelectStrategyFactory
Factory that creates a new
SelectStrategy every time. |
ServerChannel |
类和说明 |
---|
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelException
A
RuntimeException which is thrown when an I/O operation fails. |
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
类和说明 |
---|
AbstractChannel
A skeletal
Channel implementation. |
AbstractChannel.AbstractUnsafe
Unsafe implementation which sub-classes must extend and use. |
AbstractServerChannel
A skeletal server-side
Channel implementation. |
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelConfig
A set of configuration properties of a
Channel . |
ChannelMetadata
Represents the properties of a
Channel implementation. |
ChannelOutboundBuffer
(Transport implementors only) an internal data structure used by
AbstractChannel to store its pending
outbound write requests. |
EventLoop
Will handle all the I/O operations for a
Channel once registered. |
EventLoopGroup
Special
EventExecutorGroup which allows registering Channel s that get
processed for later selection during the event loop. |
MultithreadEventLoopGroup
Abstract base class for
EventLoopGroup implementations that handles their tasks with multiple threads at
the same time. |
ServerChannel |
类和说明 |
---|
AbstractChannel
A skeletal
Channel implementation. |
AbstractChannel.AbstractUnsafe
Unsafe implementation which sub-classes must extend and use. |
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
Channel.Unsafe
Unsafe operations that should never be called from user-code.
|
ChannelOutboundBuffer
(Transport implementors only) an internal data structure used by
AbstractChannel to store its pending
outbound write requests. |
ChannelPromise
Special
ChannelFuture which is writable. |
EventLoop
Will handle all the I/O operations for a
Channel once registered. |
EventLoopGroup
Special
EventExecutorGroup which allows registering Channel s that get
processed for later selection during the event loop. |
FileRegion
A region of a file that is sent via a
Channel which supports
zero-copy file transfer. |
MultithreadEventLoopGroup
Abstract base class for
EventLoopGroup implementations that handles their tasks with multiple threads at
the same time. |
SelectStrategyFactory
Factory that creates a new
SelectStrategy every time. |
SingleThreadEventLoop
Abstract base class for
EventLoop 's that execute all its submitted tasks in a single thread. |
类和说明 |
---|
AbstractChannel
A skeletal
Channel implementation. |
AbstractChannel.AbstractUnsafe
Unsafe implementation which sub-classes must extend and use. |
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelMetadata
Represents the properties of a
Channel implementation. |
ChannelOutboundBuffer
(Transport implementors only) an internal data structure used by
AbstractChannel to store its pending
outbound write requests. |
EventLoop
Will handle all the I/O operations for a
Channel once registered. |
EventLoopGroup
Special
EventExecutorGroup which allows registering Channel s that get
processed for later selection during the event loop. |
FileRegion
A region of a file that is sent via a
Channel which supports
zero-copy file transfer. |
ThreadPerChannelEventLoopGroup |
类和说明 |
---|
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
类和说明 |
---|
AbstractChannel
A skeletal
Channel implementation. |
AbstractChannel.AbstractUnsafe
Unsafe implementation which sub-classes must extend and use. |
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelConfig
A set of configuration properties of a
Channel . |
ChannelOption
A
ChannelOption allows to configure a ChannelConfig in a type-safe
way. |
MessageSizeEstimator
Responsible to estimate size of a message.
|
RecvByteBufAllocator
Allocates a new receive buffer whose capacity is probably large enough to read all inbound data and small enough
not to waste its space.
|
类和说明 |
---|
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelConfig
A set of configuration properties of a
Channel . |
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
ChannelOption
A
ChannelOption allows to configure a ChannelConfig in a type-safe
way. |
ChannelPromise
Special
ChannelFuture which is writable. |
DefaultChannelConfig
The default
SocketChannelConfig implementation. |
MessageSizeEstimator
Responsible to estimate size of a message.
|
RecvByteBufAllocator
Allocates a new receive buffer whose capacity is probably large enough to read all inbound data and small enough
not to waste its space.
|
ServerChannel |
类和说明 |
---|
AbstractChannel
A skeletal
Channel implementation. |
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
ChannelMetadata
Represents the properties of a
Channel implementation. |
ChannelOutboundBuffer
(Transport implementors only) an internal data structure used by
AbstractChannel to store its pending
outbound write requests. |
ChannelPromise
Special
ChannelFuture which is writable. |
ServerChannel |
类和说明 |
---|
AbstractChannel
A skeletal
Channel implementation. |
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
ChannelMetadata
Represents the properties of a
Channel implementation. |
ChannelOutboundBuffer
(Transport implementors only) an internal data structure used by
AbstractChannel to store its pending
outbound write requests. |
ChannelPromise
Special
ChannelFuture which is writable. |
ServerChannel |
类和说明 |
---|
AddressedEnvelope
A message that wraps another message with a sender address and a recipient address.
|
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelConfig
A set of configuration properties of a
Channel . |
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
ChannelOption
A
ChannelOption allows to configure a ChannelConfig in a type-safe
way. |
ChannelPromise
Special
ChannelFuture which is writable. |
DefaultAddressedEnvelope
The default
AddressedEnvelope implementation. |
DefaultChannelConfig
The default
SocketChannelConfig implementation. |
MessageSizeEstimator
Responsible to estimate size of a message.
|
RecvByteBufAllocator
Allocates a new receive buffer whose capacity is probably large enough to read all inbound data and small enough
not to waste its space.
|
ServerChannel |
类和说明 |
---|
AbstractChannel
A skeletal
Channel implementation. |
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
ChannelMetadata
Represents the properties of a
Channel implementation. |
ChannelOutboundBuffer
(Transport implementors only) an internal data structure used by
AbstractChannel to store its pending
outbound write requests. |
ChannelPromise
Special
ChannelFuture which is writable. |
FileRegion
A region of a file that is sent via a
Channel which supports
zero-copy file transfer. |
ServerChannel |
类和说明 |
---|
AbstractChannel
A skeletal
Channel implementation. |
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelConfig
A set of configuration properties of a
Channel . |
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
ChannelMetadata
Represents the properties of a
Channel implementation. |
ChannelOption
A
ChannelOption allows to configure a ChannelConfig in a type-safe
way. |
ChannelOutboundBuffer
(Transport implementors only) an internal data structure used by
AbstractChannel to store its pending
outbound write requests. |
ChannelPromise
Special
ChannelFuture which is writable. |
DefaultChannelConfig
The default
SocketChannelConfig implementation. |
MessageSizeEstimator
Responsible to estimate size of a message.
|
RecvByteBufAllocator
Allocates a new receive buffer whose capacity is probably large enough to read all inbound data and small enough
not to waste its space.
|
ServerChannel |
类和说明 |
---|
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelConfig
A set of configuration properties of a
Channel . |
ChannelOption
A
ChannelOption allows to configure a ChannelConfig in a type-safe
way. |
DefaultChannelConfig
The default
SocketChannelConfig implementation. |
MessageSizeEstimator
Responsible to estimate size of a message.
|
RecvByteBufAllocator
Allocates a new receive buffer whose capacity is probably large enough to read all inbound data and small enough
not to waste its space.
|
ServerChannel |
类和说明 |
---|
AbstractChannel
A skeletal
Channel implementation. |
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelMetadata
Represents the properties of a
Channel implementation. |
ChannelOutboundBuffer
(Transport implementors only) an internal data structure used by
AbstractChannel to store its pending
outbound write requests. |
FileRegion
A region of a file that is sent via a
Channel which supports
zero-copy file transfer. |
ServerChannel |
类和说明 |
---|
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelConfig
A set of configuration properties of a
Channel . |
MessageSizeEstimator
Responsible to estimate size of a message.
|
RecvByteBufAllocator
Allocates a new receive buffer whose capacity is probably large enough to read all inbound data and small enough
not to waste its space.
|
ServerChannel |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelInitializer
A special
ChannelInboundHandler which offers an easy way to initialize a Channel once it was
registered to its EventLoop . |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelOutboundHandlerAdapter
Skeleton implementation of a
ChannelOutboundHandler . |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelInitializer
A special
ChannelInboundHandler which offers an easy way to initialize a Channel once it was
registered to its EventLoop . |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelInitializer
A special
ChannelInboundHandler which offers an easy way to initialize a Channel once it was
registered to its EventLoop . |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelInitializer
A special
ChannelInboundHandler which offers an easy way to initialize a Channel once it was
registered to its EventLoop . |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelInitializer
A special
ChannelInboundHandler which offers an easy way to initialize a Channel once it was
registered to its EventLoop . |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelInitializer
A special
ChannelInboundHandler which offers an easy way to initialize a Channel once it was
registered to its EventLoop . |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelInitializer
A special
ChannelInboundHandler which offers an easy way to initialize a Channel once it was
registered to its EventLoop . |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
类和说明 |
---|
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelInitializer
A special
ChannelInboundHandler which offers an easy way to initialize a Channel once it was
registered to its EventLoop . |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelInitializer
A special
ChannelInboundHandler which offers an easy way to initialize a Channel once it was
registered to its EventLoop . |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelInitializer
A special
ChannelInboundHandler which offers an easy way to initialize a Channel once it was
registered to its EventLoop . |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelDuplexHandler
ChannelHandler implementation which represents a combination out of a ChannelInboundHandler and
the ChannelOutboundHandler . |
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelInitializer
A special
ChannelInboundHandler which offers an easy way to initialize a Channel once it was
registered to its EventLoop . |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelOutboundHandlerAdapter
Skeleton implementation of a
ChannelOutboundHandler . |
ChannelPromise
Special
ChannelFuture which is writable. |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelInitializer
A special
ChannelInboundHandler which offers an easy way to initialize a Channel once it was
registered to its EventLoop . |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelInitializer
A special
ChannelInboundHandler which offers an easy way to initialize a Channel once it was
registered to its EventLoop . |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelInitializer
A special
ChannelInboundHandler which offers an easy way to initialize a Channel once it was
registered to its EventLoop . |
SimpleChannelInboundHandler
ChannelInboundHandlerAdapter which allows to explicit only handle a specific type of messages. |
类和说明 |
---|
ChannelDuplexHandler
ChannelHandler implementation which represents a combination out of a ChannelInboundHandler and
the ChannelOutboundHandler . |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelOutboundHandlerAdapter
Skeleton implementation of a
ChannelOutboundHandler . |
ChannelPromise
Special
ChannelFuture which is writable. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelOutboundHandlerAdapter
Skeleton implementation of a
ChannelOutboundHandler . |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelOutboundHandlerAdapter
Skeleton implementation of a
ChannelOutboundHandler . |
类和说明 |
---|
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelOutboundHandlerAdapter
Skeleton implementation of a
ChannelOutboundHandler . |
ChannelPromise
Special
ChannelFuture which is writable. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
类和说明 |
---|
ChannelDuplexHandler
ChannelHandler implementation which represents a combination out of a ChannelInboundHandler and
the ChannelOutboundHandler . |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelOutboundHandlerAdapter
Skeleton implementation of a
ChannelOutboundHandler . |
ChannelPromise
Special
ChannelFuture which is writable. |
CombinedChannelDuplexHandler |
类和说明 |
---|
ChannelDuplexHandler
ChannelHandler implementation which represents a combination out of a ChannelInboundHandler and
the ChannelOutboundHandler . |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelPromise
Special
ChannelFuture which is writable. |
类和说明 |
---|
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
类和说明 |
---|
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelOutboundHandlerAdapter
Skeleton implementation of a
ChannelOutboundHandler . |
ChannelPromise
Special
ChannelFuture which is writable. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelOutboundHandlerAdapter
Skeleton implementation of a
ChannelOutboundHandler . |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelOutboundHandlerAdapter
Skeleton implementation of a
ChannelOutboundHandler . |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelOutboundHandlerAdapter
Skeleton implementation of a
ChannelOutboundHandler . |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelOutboundHandlerAdapter
Skeleton implementation of a
ChannelOutboundHandler . |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelOutboundHandlerAdapter
Skeleton implementation of a
ChannelOutboundHandler . |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelOutboundHandlerAdapter
Skeleton implementation of a
ChannelOutboundHandler . |
类和说明 |
---|
ChannelDuplexHandler
ChannelHandler implementation which represents a combination out of a ChannelInboundHandler and
the ChannelOutboundHandler . |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelOutboundHandlerAdapter
Skeleton implementation of a
ChannelOutboundHandler . |
ChannelPromise
Special
ChannelFuture which is writable. |
CombinedChannelDuplexHandler |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelOutboundHandlerAdapter
Skeleton implementation of a
ChannelOutboundHandler . |
类和说明 |
---|
ChannelDuplexHandler
ChannelHandler implementation which represents a combination out of a ChannelInboundHandler and
the ChannelOutboundHandler . |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelPromise
Special
ChannelFuture which is writable. |
类和说明 |
---|
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
类和说明 |
---|
ChannelDuplexHandler
ChannelHandler implementation which represents a combination out of a ChannelInboundHandler and
the ChannelOutboundHandler . |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelPromise
Special
ChannelFuture which is writable. |
类和说明 |
---|
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
ChannelFuture
The result of an asynchronous
Channel I/O operation. |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelPromise
Special
ChannelFuture which is writable. |
类和说明 |
---|
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
类和说明 |
---|
ChannelDuplexHandler
ChannelHandler implementation which represents a combination out of a ChannelInboundHandler and
the ChannelOutboundHandler . |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelPromise
Special
ChannelFuture which is writable. |
类和说明 |
---|
ChannelDuplexHandler
ChannelHandler implementation which represents a combination out of a ChannelInboundHandler and
the ChannelOutboundHandler . |
ChannelException
A
RuntimeException which is thrown when an I/O operation fails. |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelOutboundHandlerAdapter
Skeleton implementation of a
ChannelOutboundHandler . |
ChannelPromise
Special
ChannelFuture which is writable. |
类和说明 |
---|
ChannelDuplexHandler
ChannelHandler implementation which represents a combination out of a ChannelInboundHandler and
the ChannelOutboundHandler . |
ChannelHandler
Handles or intercepts a
ChannelInboundInvoker or ChannelOutboundInvoker operation, and forwards it
to the next handler in a ChannelPipeline . |
ChannelHandler.Sharable
Indicates that the same instance of the annotated
ChannelHandler
can be added to one or more ChannelPipeline s multiple times
without a race condition. |
ChannelHandlerAdapter
Skeleton implementation of a
ChannelHandler . |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
ChannelInboundHandler
ChannelHandler which adds callbacks for state changes. |
ChannelInboundHandlerAdapter
Abstract base class for
ChannelInboundHandler implementations which provide
implementations of all of their methods. |
ChannelOutboundHandler
ChannelHandler which will get notified for IO-outbound-operations. |
ChannelPromise
Special
ChannelFuture which is writable. |