Uses of Class
io.netty.util.internal.UnstableApi
-
Packages that use UnstableApi Package Description io.netty.buffer Abstraction of a byte buffer - the fundamental data structure to represent a low-level binary and text message.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 onSSLEngineio.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.buffer
Constructors in io.netty.buffer with annotations of type UnstableApi Constructor Description UnpooledUnsafeDirectByteBuf(ByteBufAllocator alloc, boolean slice, java.nio.ByteBuffer initialBuffer, int maxCapacity)Creates a new direct ByteBuf by wrapping the specified initial buffer. -
Uses of UnstableApi in io.netty.channel
Classes in io.netty.channel with annotations of type UnstableApi Modifier and Type Class Description classAbstractCoalescingBufferQueueclassDelegatingChannelPromiseNotifierclassPreferHeapByteBufAllocatorWraps anotherByteBufAllocatorand use heapbuffers everywhere except when a direct buffer is explicit requested.classVoidChannelPromiseMethods in io.netty.channel with annotations of type UnstableApi Modifier and Type Method Description intSingleThreadEventLoop. 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 classEpollEventArrayThis is an internal datastructure which can be directly passed to epoll_wait to reduce the overhead.classLinuxSocketA socket which provides access Linux native methods.Methods in io.netty.channel.epoll with annotations of type UnstableApi Modifier and Type Method Description voidEpollIoHandler. closeFileDescriptors()This method is intended for use by process checkpoint/restore integration, such as OpenJDK CRaC.voidEpollIoHandler. 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 classAcceptFilterMethods in io.netty.channel.kqueue with annotations of type UnstableApi Modifier and Type Method Description protected voidAbstractKQueueStreamChannel. doShutdownOutput()PeerCredentialsKQueueDomainSocketChannel. 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 classBufferclassPeerCredentialsUser credentials discovered for the peer unix domain socket.classPreferredDirectByteBufAllocatorMethods in io.netty.channel.unix with annotations of type UnstableApi Modifier and Type Method Description static voidUnix. 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 classReadOnlyHttpHeadersA variant ofHttpHeaderswhich 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 classAbstractMemcacheObjectThe defaultMemcacheObjectimplementation.classAbstractMemcacheObjectAggregator<H extends MemcacheMessage>AChannelHandlerthat aggregates anMemcacheMessageand its followingMemcacheContents into a singleMemcacheMessagewith no followingMemcacheContents.classAbstractMemcacheObjectDecoderAbstract super class for both ascii and binary decoders.classAbstractMemcacheObjectEncoder<M extends MemcacheMessage>A general purposeAbstractMemcacheObjectEncoderthat encodesMemcacheMessages.classDefaultLastMemcacheContentThe default implementation for theLastMemcacheContent.classDefaultMemcacheContentThe defaultMemcacheContentimplementation.interfaceFullMemcacheMessageCombinesMemcacheMessageandLastMemcacheContentinto one message.interfaceLastMemcacheContentTheMemcacheContentwhich signals the end of the content batch.interfaceMemcacheContentAn Memcache content chunk.interfaceMemcacheMessageMarker interface for both ascii and binary messages.interfaceMemcacheObjectDefines a common interface for allMemcacheObjectimplementations. -
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 classAbstractBinaryMemcacheDecoder<M extends BinaryMemcacheMessage>Decoder for bothBinaryMemcacheRequestandBinaryMemcacheResponse.classAbstractBinaryMemcacheEncoder<M extends BinaryMemcacheMessage>AMessageToByteEncoderthat encodes binary memcache messages into bytes.classAbstractBinaryMemcacheMessageDefault implementation of aBinaryMemcacheMessage.classBinaryMemcacheClientCodecThe client codec that combines the proper encoder and decoder.interfaceBinaryMemcacheMessageAn interface that defines a binary Memcache message, providing common properties forBinaryMemcacheRequestandBinaryMemcacheResponse.classBinaryMemcacheObjectAggregatorAn object aggregator for the memcache binary protocol.classBinaryMemcacheOpcodesRepresents all Opcodes that can occur in aBinaryMemcacheMessage.interfaceBinaryMemcacheRequestRepresents a fullBinaryMemcacheRequest, which contains the header and optional key and extras.classBinaryMemcacheRequestDecoderThe decoder part which takes care of decoding the request-specific headers.classBinaryMemcacheRequestEncoderThe encoder part which takes care of encoding the request headers.interfaceBinaryMemcacheResponseRepresents a fullBinaryMemcacheResponse, which contains the header and optional key and extras.classBinaryMemcacheResponseDecoderThe decoder which takes care of decoding the response headers.classBinaryMemcacheResponseEncoderThe encoder which takes care of encoding the response headers.classBinaryMemcacheResponseStatusContains all possible status values aBinaryMemcacheResponsecan return.classBinaryMemcacheServerCodecThe full server codec that combines the correct encoder and decoder.classDefaultBinaryMemcacheRequestThe default implementation of theBinaryMemcacheRequest.classDefaultBinaryMemcacheResponseThe default implementation of theBinaryMemcacheResponse.classDefaultFullBinaryMemcacheRequestThe default implementation of aFullBinaryMemcacheRequest.classDefaultFullBinaryMemcacheResponseThe default implementation of aFullBinaryMemcacheResponse.interfaceFullBinaryMemcacheRequestABinaryMemcacheRequestthat also includes the content.interfaceFullBinaryMemcacheResponseABinaryMemcacheResponsethat 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 classAbstractStringRedisMessageAbstract class for Simple Strings or Errors.classArrayHeaderRedisMessageHeader of Redis Array Message.classArrayRedisMessageArrays of RESP.classBulkStringHeaderRedisMessageThe header of Bulk Strings in RESP.interfaceBulkStringRedisContentA chunk of bulk strings which is used for Redis chunked transfer-encoding.classDefaultBulkStringRedisContentA default implementation ofBulkStringRedisContent.classDefaultLastBulkStringRedisContentA default implementation forLastBulkStringRedisContent.classErrorRedisMessageErrors of RESP.classFixedRedisMessagePoolA default fixed redis message pool.classFullBulkStringRedisMessageAn aggregated bulk string of RESP.classInlineCommandRedisMessageInline commands of RESP.classIntegerRedisMessageIntegers of RESP.interfaceLastBulkStringRedisContentA last chunk of Bulk Strings.classRedisArrayAggregatorAggregatesRedisMessageparts intoArrayRedisMessage.classRedisBulkStringAggregatorAChannelHandlerthat aggregates anBulkStringHeaderRedisMessageand its followingBulkStringRedisContents into a singleFullBulkStringRedisMessagewith no followingBulkStringRedisContents.classRedisCodecExceptionclassRedisDecoderDecodes the Redis protocol intoRedisMessageobjects following RESP (REdis Serialization Protocol).classRedisEncoderEncodesRedisMessageinto bytes following RESP (REdis Serialization Protocol).interfaceRedisMessageRedisMessage is base interface for codec-redis.interfaceRedisMessagePoolA strategy interface for cachingRedisMessages.classRedisMessageTypeType of RESP (REdis Serialization Protocol).classSimpleStringRedisMessageSimple 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 classDefaultLastSmtpContentDefault implementation ofLastSmtpContentthat does no validation of the raw data passed in.classDefaultSmtpContentDefault implementation ofSmtpContentthat does no validation of the raw data passed in.classDefaultSmtpRequestDefaultSmtpRequestimplementation.classDefaultSmtpResponseDefaultSmtpResponseimplementation.interfaceLastSmtpContentThe last part of a sequence ofSmtpContents that are sent after aDATArequest.classSmtpCommandThe command part of aSmtpRequest.interfaceSmtpContentContent that is sent after theDATArequest.interfaceSmtpRequestAn SMTP request.classSmtpRequestEncoderEncoder for SMTP requests.classSmtpRequestsProvides utility methods to createSmtpRequests.interfaceSmtpResponseA SMTP responseclassSmtpResponseDecoderDecoder 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 classSocksAuthRequestDecoder.Statestatic classSocksAuthResponseDecoder.Statestatic classSocksCmdRequestDecoder.Statestatic classSocksCmdResponseDecoder.Statestatic classSocksInitRequestDecoder.Statestatic classSocksInitResponseDecoder.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 classSocks4ClientDecoder.Statestatic classSocks4ServerDecoder.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 classSocks5CommandRequestDecoder.Statestatic classSocks5CommandResponseDecoder.Statestatic classSocks5InitialRequestDecoder.Statestatic classSocks5InitialResponseDecoder.Statestatic classSocks5PasswordAuthRequestDecoder.Statestatic classSocks5PasswordAuthResponseDecoder.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 classCipherSuiteConverterConverts a Java cipher suite string to an OpenSSL cipher suite string and vice versa.interfaceOpenSslPrivateKeyMethodAllow 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 SslContextBuilderSslContextBuilder. enableOcsp(boolean enableOcsp)Enables OCSP stapling.byte[]ReferenceCountedOpenSslEngine. getOcspResponse()Returns the OCSP response ornullif the server didn't provide a stapled OCSP response.voidReferenceCountedOpenSslEngine. setOcspResponse(byte[] response)Sets the OCSP response.voidReferenceCountedOpenSslContext. setPrivateKeyMethod(OpenSslPrivateKeyMethod method)Deprecated.voidReferenceCountedOpenSslEngine. setVerify(int verifyMode, int depth)See SSL_set_verify andSSL.setVerify(long, int, int).voidSslHandler. 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 classOcspClientHandlerA 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 classRecycler.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 classNonStickyEventExecutorGroupEventExecutorGroupwhich will preserveRunnableexecution order but makes no guarantees about whatEventExecutor(and thereforeThread) will be used to execute theRunnables.Methods in io.netty.util.concurrent with annotations of type UnstableApi Modifier and Type Method Description voidAbstractEventExecutor. 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.
-