程序包 | 说明 |
---|---|
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.epoll |
Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
|
io.netty.channel.socket |
Abstract TCP and UDP socket interfaces which extend the core channel API.
|
io.netty.channel.socket.nio |
NIO-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
|
io.netty.channel.socket.oio |
Old blocking I/O based socket channel API implementation - recommended for
a small number of connections (< 1000).
|
io.netty.handler.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.util.concurrent |
Utility classes for concurrent / async tasks.
|
限定符和类型 | 方法和说明 |
---|---|
protected void |
AbstractChannel.doShutdownOutput()
Called when conditions justify shutting down the output portion of the channel.
|
void |
AbstractChannel.AbstractUnsafe.shutdownOutput(ChannelPromise promise)
Shutdown the output portion of the corresponding
Channel . |
限定符和类型 | 方法和说明 |
---|---|
protected void |
AbstractEpollStreamChannel.doShutdownOutput() |
限定符和类型 | 类和说明 |
---|---|
class |
ChannelOutputShutdownEvent
Special event which will be fired and passed to the
ChannelInboundHandler.userEventTriggered(ChannelHandlerContext, Object) methods once the output of
a SocketChannel was shutdown. |
class |
ChannelOutputShutdownException
Used to fail pending writes when a channel's output has been shutdown.
|
限定符和类型 | 方法和说明 |
---|---|
protected void |
NioSocketChannel.doShutdownOutput() |
限定符和类型 | 方法和说明 |
---|---|
protected void |
OioSocketChannel.doShutdownOutput() |
限定符和类型 | 方法和说明 |
---|---|
SslContextBuilder |
SslContextBuilder.enableOcsp(boolean enableOcsp)
Enables OCSP stapling.
|
byte[] |
ReferenceCountedOpenSslEngine.getOcspResponse()
Returns the OCSP response or
null if the server didn't provide a stapled OCSP response. |
void |
ReferenceCountedOpenSslEngine.setOcspResponse(byte[] response)
Sets the OCSP response.
|
void |
ReferenceCountedOpenSslEngine.setVerify(int verifyMode,
int depth)
|
限定符和类型 | 类和说明 |
---|---|
class |
OcspClientHandler
A handler for SSL clients to handle and act upon stapled OCSP responses.
|
限定符和类型 | 方法和说明 |
---|---|
boolean |
FastThreadLocalThread.willCleanupFastThreadLocals()
|
static boolean |
FastThreadLocalThread.willCleanupFastThreadLocals(java.lang.Thread thread)
|