Uses of Class
io.netty.util.internal.UnstableApi
-
Packages that use UnstableApi Package Description 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.kqueue BSD specific transport.io.netty.channel.unix Unix specific transport.io.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty.handler.codec.memcache Common superset of ascii and binary classes.io.netty.handler.codec.memcache.binary Implementations and Interfaces for the Memcache Binary protocol.io.netty.handler.codec.redis Encoder, decoder for Redis.io.netty.handler.codec.smtp SMTP codec.io.netty.handler.codec.socks Encoder, decoder and their related message types for Socks.io.netty.handler.codec.socksx.v4 Encoder, decoder and their related message types for SOCKSv4 protocol.io.netty.handler.codec.socksx.v5 Encoder, decoder and their related message types for SOCKSv5 protocol.io.netty.handler.ssl SSL · TLS implementation based onSSLEngine
io.netty.handler.ssl.ocsp Certificate validation using OCSPio.netty.util Utility classes used across multiple packages.io.netty.util.concurrent Utility classes for concurrent / async tasks. -
Packages with annotations of type UnstableApi Package Description io.netty.handler.codec.memcache.binary Implementations and Interfaces for the Memcache Binary protocol.io.netty.handler.codec.memcache Common superset of ascii and binary classes.io.netty.handler.codec.redis Encoder, decoder for Redis.io.netty.handler.codec.smtp SMTP codec. -
-
Uses of UnstableApi in io.netty.channel
Classes in io.netty.channel with annotations of type UnstableApi Modifier and Type Class Description class
AbstractCoalescingBufferQueue
class
DelegatingChannelPromiseNotifier
class
PreferHeapByteBufAllocator
Wraps anotherByteBufAllocator
and use heapbuffers everywhere except when a direct buffer is explicit requested.class
VoidChannelPromise
Methods in io.netty.channel with annotations of type UnstableApi Modifier and Type Method Description int
SingleThreadEventLoop. registeredChannels()
java.util.Iterator<Channel>
SingleThreadEventLoop. registeredChannelsIterator()
-
Uses of UnstableApi in io.netty.channel.epoll
Classes in io.netty.channel.epoll with annotations of type UnstableApi Modifier and Type Class Description class
EpollEventArray
This is an internal datastructure which can be directly passed to epoll_wait to reduce the overhead.class
LinuxSocket
A socket which provides access Linux native methods.Methods in io.netty.channel.epoll with annotations of type UnstableApi Modifier and Type Method Description void
EpollIoHandler. closeFileDescriptors()
This method is intended for use by process checkpoint/restore integration, such as OpenJDK CRaC.void
EpollIoHandler. openFileDescriptors()
This method is intended for use by a process checkpoint/restore integration, such as OpenJDK CRaC. -
Uses of UnstableApi in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue with annotations of type UnstableApi Modifier and Type Class Description class
AcceptFilter
Methods in io.netty.channel.kqueue with annotations of type UnstableApi Modifier and Type Method Description protected void
AbstractKQueueStreamChannel. doShutdownOutput()
PeerCredentials
KQueueDomainSocketChannel. peerCredentials()
Returns the unix credentials (uid, gid, pid) of the peer SO_PEERCRED -
Uses of UnstableApi in io.netty.channel.unix
Classes in io.netty.channel.unix with annotations of type UnstableApi Modifier and Type Class Description class
Buffer
class
PeerCredentials
User credentials discovered for the peer unix domain socket.class
PreferredDirectByteBufAllocator
Methods in io.netty.channel.unix with annotations of type UnstableApi Modifier and Type Method Description static void
Unix. registerInternal(java.lang.Runnable registerTask)
Internal method... -
Uses of UnstableApi in io.netty.handler.codec.http
Classes in io.netty.handler.codec.http with annotations of type UnstableApi Modifier and Type Class Description class
ReadOnlyHttpHeaders
A variant ofHttpHeaders
which only supports read-only methods. -
Uses of UnstableApi in io.netty.handler.codec.memcache
Classes in io.netty.handler.codec.memcache with annotations of type UnstableApi Modifier and Type Class Description class
AbstractMemcacheObject
The defaultMemcacheObject
implementation.class
AbstractMemcacheObjectAggregator<H extends MemcacheMessage>
AChannelHandler
that aggregates anMemcacheMessage
and its followingMemcacheContent
s into a singleMemcacheMessage
with no followingMemcacheContent
s.class
AbstractMemcacheObjectDecoder
Abstract super class for both ascii and binary decoders.class
AbstractMemcacheObjectEncoder<M extends MemcacheMessage>
A general purposeAbstractMemcacheObjectEncoder
that encodesMemcacheMessage
s.class
DefaultLastMemcacheContent
The default implementation for theLastMemcacheContent
.class
DefaultMemcacheContent
The defaultMemcacheContent
implementation.interface
FullMemcacheMessage
CombinesMemcacheMessage
andLastMemcacheContent
into one message.interface
LastMemcacheContent
TheMemcacheContent
which signals the end of the content batch.interface
MemcacheContent
An Memcache content chunk.interface
MemcacheMessage
Marker interface for both ascii and binary messages.interface
MemcacheObject
Defines a common interface for allMemcacheObject
implementations. -
Uses of UnstableApi in io.netty.handler.codec.memcache.binary
Classes in io.netty.handler.codec.memcache.binary with annotations of type UnstableApi Modifier and Type Class Description class
AbstractBinaryMemcacheDecoder<M extends BinaryMemcacheMessage>
Decoder for bothBinaryMemcacheRequest
andBinaryMemcacheResponse
.class
AbstractBinaryMemcacheEncoder<M extends BinaryMemcacheMessage>
AMessageToByteEncoder
that encodes binary memcache messages into bytes.class
AbstractBinaryMemcacheMessage
Default implementation of aBinaryMemcacheMessage
.class
BinaryMemcacheClientCodec
The client codec that combines the proper encoder and decoder.interface
BinaryMemcacheMessage
An interface that defines a binary Memcache message, providing common properties forBinaryMemcacheRequest
andBinaryMemcacheResponse
.class
BinaryMemcacheObjectAggregator
An object aggregator for the memcache binary protocol.class
BinaryMemcacheOpcodes
Represents all Opcodes that can occur in aBinaryMemcacheMessage
.interface
BinaryMemcacheRequest
Represents a fullBinaryMemcacheRequest
, which contains the header and optional key and extras.class
BinaryMemcacheRequestDecoder
The decoder part which takes care of decoding the request-specific headers.class
BinaryMemcacheRequestEncoder
The encoder part which takes care of encoding the request headers.interface
BinaryMemcacheResponse
Represents a fullBinaryMemcacheResponse
, which contains the header and optional key and extras.class
BinaryMemcacheResponseDecoder
The decoder which takes care of decoding the response headers.class
BinaryMemcacheResponseEncoder
The encoder which takes care of encoding the response headers.class
BinaryMemcacheResponseStatus
Contains all possible status values aBinaryMemcacheResponse
can return.class
BinaryMemcacheServerCodec
The full server codec that combines the correct encoder and decoder.class
DefaultBinaryMemcacheRequest
The default implementation of theBinaryMemcacheRequest
.class
DefaultBinaryMemcacheResponse
The default implementation of theBinaryMemcacheResponse
.class
DefaultFullBinaryMemcacheRequest
The default implementation of aFullBinaryMemcacheRequest
.class
DefaultFullBinaryMemcacheResponse
The default implementation of aFullBinaryMemcacheResponse
.interface
FullBinaryMemcacheRequest
ABinaryMemcacheRequest
that also includes the content.interface
FullBinaryMemcacheResponse
ABinaryMemcacheResponse
that also includes the content. -
Uses of UnstableApi in io.netty.handler.codec.redis
Classes in io.netty.handler.codec.redis with annotations of type UnstableApi Modifier and Type Class Description class
AbstractStringRedisMessage
Abstract class for Simple Strings or Errors.class
ArrayHeaderRedisMessage
Header of Redis Array Message.class
ArrayRedisMessage
Arrays of RESP.class
BulkStringHeaderRedisMessage
The header of Bulk Strings in RESP.interface
BulkStringRedisContent
A chunk of bulk strings which is used for Redis chunked transfer-encoding.class
DefaultBulkStringRedisContent
A default implementation ofBulkStringRedisContent
.class
DefaultLastBulkStringRedisContent
A default implementation forLastBulkStringRedisContent
.class
ErrorRedisMessage
Errors of RESP.class
FixedRedisMessagePool
A default fixed redis message pool.class
FullBulkStringRedisMessage
An aggregated bulk string of RESP.class
InlineCommandRedisMessage
Inline commands of RESP.class
IntegerRedisMessage
Integers of RESP.interface
LastBulkStringRedisContent
A last chunk of Bulk Strings.class
RedisArrayAggregator
AggregatesRedisMessage
parts intoArrayRedisMessage
.class
RedisBulkStringAggregator
AChannelHandler
that aggregates anBulkStringHeaderRedisMessage
and its followingBulkStringRedisContent
s into a singleFullBulkStringRedisMessage
with no followingBulkStringRedisContent
s.class
RedisCodecException
class
RedisDecoder
Decodes the Redis protocol intoRedisMessage
objects following RESP (REdis Serialization Protocol).class
RedisEncoder
EncodesRedisMessage
into bytes following RESP (REdis Serialization Protocol).interface
RedisMessage
RedisMessage is base interface for codec-redis.interface
RedisMessagePool
A strategy interface for cachingRedisMessage
s.class
RedisMessageType
Type of RESP (REdis Serialization Protocol).class
SimpleStringRedisMessage
Simple Strings of RESP. -
Uses of UnstableApi in io.netty.handler.codec.smtp
Classes in io.netty.handler.codec.smtp with annotations of type UnstableApi Modifier and Type Class Description class
DefaultLastSmtpContent
Default implementation ofLastSmtpContent
that does no validation of the raw data passed in.class
DefaultSmtpContent
Default implementation ofSmtpContent
that does no validation of the raw data passed in.class
DefaultSmtpRequest
DefaultSmtpRequest
implementation.class
DefaultSmtpResponse
DefaultSmtpResponse
implementation.interface
LastSmtpContent
The last part of a sequence ofSmtpContent
s that are sent after aDATA
request.class
SmtpCommand
The command part of aSmtpRequest
.interface
SmtpContent
Content that is sent after theDATA
request.interface
SmtpRequest
An SMTP request.class
SmtpRequestEncoder
Encoder for SMTP requests.class
SmtpRequests
Provides utility methods to createSmtpRequest
s.interface
SmtpResponse
A SMTP responseclass
SmtpResponseDecoder
Decoder for SMTP responses. -
Uses of UnstableApi in io.netty.handler.codec.socks
Classes in io.netty.handler.codec.socks with annotations of type UnstableApi Modifier and Type Class Description static class
SocksAuthRequestDecoder.State
static class
SocksAuthResponseDecoder.State
static class
SocksCmdRequestDecoder.State
static class
SocksCmdResponseDecoder.State
static class
SocksInitRequestDecoder.State
static class
SocksInitResponseDecoder.State
-
Uses of UnstableApi in io.netty.handler.codec.socksx.v4
Classes in io.netty.handler.codec.socksx.v4 with annotations of type UnstableApi Modifier and Type Class Description static class
Socks4ClientDecoder.State
static class
Socks4ServerDecoder.State
-
Uses of UnstableApi in io.netty.handler.codec.socksx.v5
Classes in io.netty.handler.codec.socksx.v5 with annotations of type UnstableApi Modifier and Type Class Description static class
Socks5CommandRequestDecoder.State
static class
Socks5CommandResponseDecoder.State
static class
Socks5InitialRequestDecoder.State
static class
Socks5InitialResponseDecoder.State
static class
Socks5PasswordAuthRequestDecoder.State
static class
Socks5PasswordAuthResponseDecoder.State
-
Uses of UnstableApi in io.netty.handler.ssl
Classes in io.netty.handler.ssl with annotations of type UnstableApi Modifier and Type Class Description class
CipherSuiteConverter
Converts a Java cipher suite string to an OpenSSL cipher suite string and vice versa.interface
OpenSslPrivateKeyMethod
Allow to customize private key signing / decrypting (when using RSA).Methods in io.netty.handler.ssl with annotations of type UnstableApi Modifier and Type Method Description SslContextBuilder
SslContextBuilder. enableOcsp(boolean enableOcsp)
Enables OCSP stapling.byte[]
ReferenceCountedOpenSslEngine. getOcspResponse()
Returns the OCSP response ornull
if the server didn't provide a stapled OCSP response.void
ReferenceCountedOpenSslEngine. setOcspResponse(byte[] response)
Sets the OCSP response.void
ReferenceCountedOpenSslContext. setPrivateKeyMethod(OpenSslPrivateKeyMethod method)
Deprecated.void
ReferenceCountedOpenSslEngine. setVerify(int verifyMode, int depth)
See SSL_set_verify andSSL.setVerify(long, int, int)
.void
SslHandler. setWrapDataSize(int wrapDataSize)
Sets the number of bytes to pass to eachSSLEngine.wrap(ByteBuffer[], int, int, ByteBuffer)
call. -
Uses of UnstableApi in io.netty.handler.ssl.ocsp
Classes in io.netty.handler.ssl.ocsp with annotations of type UnstableApi Modifier and Type Class Description class
OcspClientHandler
A handler for SSL clients to handle and act upon stapled OCSP responses. -
Uses of UnstableApi in io.netty.util
Classes in io.netty.util with annotations of type UnstableApi Modifier and Type Class Description static class
Recycler.EnhancedHandle<T>
-
Uses of UnstableApi in io.netty.util.concurrent
Classes in io.netty.util.concurrent with annotations of type UnstableApi Modifier and Type Class Description class
NonStickyEventExecutorGroup
EventExecutorGroup
which will preserveRunnable
execution order but makes no guarantees about whatEventExecutor
(and thereforeThread
) will be used to execute theRunnable
s.Methods in io.netty.util.concurrent with annotations of type UnstableApi Modifier and Type Method Description void
AbstractEventExecutor. lazyExecute(java.lang.Runnable task)
LikeExecutor.execute(Runnable)
but does not guarantee the task will be run until either a non-lazy task is executed or the executor is shut down.
-