Uses of Class
io.netty.util.concurrent.FastThreadLocal
-
Packages that use FastThreadLocal 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.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.http Encoder, decoder and their related message types for HTTP.io.netty.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.io.netty.handler.ssl.util Utility classes that helps easier development of TLS/SSL applications.io.netty.resolver.dns An alternative to Java's built-in domain name lookup mechanism that resolves a domain name asynchronously, which supports the queries of an arbitrary DNS record type as well.io.netty.util Utility classes used across multiple packages.io.netty.util.concurrent Utility classes for concurrent / async tasks.io.netty.util.internal Internal-use-only utilities which is not allowed to be used outside Netty. -
-
Uses of FastThreadLocal in io.netty.buffer
Subclasses of FastThreadLocal in io.netty.buffer Modifier and Type Class Description (package private) classPooledByteBufAllocator.PoolThreadLocalCacheFields in io.netty.buffer declared as FastThreadLocal Modifier and Type Field Description private static FastThreadLocal<byte[]>ByteBufUtil. BYTE_ARRAYS -
Uses of FastThreadLocal in io.netty.channel
Fields in io.netty.channel declared as FastThreadLocal Modifier and Type Field Description private static FastThreadLocal<java.util.Map<java.lang.Class<? extends ChannelHandler>,java.lang.Integer>>ChannelHandlerMask. MASKSprivate static FastThreadLocal<java.util.Map<java.lang.Class<?>,java.lang.String>>DefaultChannelPipeline. nameCachesprivate static FastThreadLocal<java.nio.ByteBuffer[]>ChannelOutboundBuffer. NIO_BUFFERS -
Uses of FastThreadLocal in io.netty.handler.codec
Fields in io.netty.handler.codec declared as FastThreadLocal Modifier and Type Field Description private static FastThreadLocal<CodecOutputList.CodecOutputLists>CodecOutputList. CODEC_OUTPUT_LISTS_POOLprivate static FastThreadLocal<DateFormatter>DateFormatter. INSTANCES -
Uses of FastThreadLocal in io.netty.handler.codec.http
Fields in io.netty.handler.codec.http declared as FastThreadLocal Modifier and Type Field Description private static FastThreadLocal<HttpHeaderDateFormat>HttpHeaderDateFormat. dateFormatThreadLocalDeprecated. -
Uses of FastThreadLocal in io.netty.handler.codec.http.websocketx
Fields in io.netty.handler.codec.http.websocketx declared as FastThreadLocal Modifier and Type Field Description private static FastThreadLocal<java.security.MessageDigest>WebSocketUtil. MD5private static FastThreadLocal<java.security.MessageDigest>WebSocketUtil. SHA1Methods in io.netty.handler.codec.http.websocketx with parameters of type FastThreadLocal Modifier and Type Method Description private static byte[]WebSocketUtil. digest(FastThreadLocal<java.security.MessageDigest> digestFastThreadLocal, byte[] data) -
Uses of FastThreadLocal in io.netty.handler.ssl.util
Fields in io.netty.handler.ssl.util declared as FastThreadLocal Modifier and Type Field Description private static FastThreadLocal<SimpleKeyManagerFactory.SimpleKeyManagerFactorySpi>SimpleKeyManagerFactory. CURRENT_SPISimpleKeyManagerFactory.SimpleKeyManagerFactorySpimust have a reference toSimpleKeyManagerFactoryto delegate its callbacks back toSimpleKeyManagerFactory.private static FastThreadLocal<SimpleTrustManagerFactory.SimpleTrustManagerFactorySpi>SimpleTrustManagerFactory. CURRENT_SPISimpleTrustManagerFactory.SimpleTrustManagerFactorySpimust have a reference toSimpleTrustManagerFactoryto delegate its callbacks back toSimpleTrustManagerFactory.private static FastThreadLocal<java.security.MessageDigest>FingerprintTrustManagerFactory. tlmd -
Uses of FastThreadLocal in io.netty.resolver.dns
Fields in io.netty.resolver.dns declared as FastThreadLocal Modifier and Type Field Description private FastThreadLocal<DnsServerAddressStream>DnsNameResolver. nameServerAddrStream -
Uses of FastThreadLocal in io.netty.util
Fields in io.netty.util declared as FastThreadLocal Modifier and Type Field Description private static FastThreadLocal<java.util.Map<Recycler.Stack<?>,Recycler.WeakOrderQueue>>Recycler. DELAYED_RECYCLEDprivate FastThreadLocal<Recycler.Stack<T>>Recycler. threadLocal -
Uses of FastThreadLocal in io.netty.util.concurrent
Fields in io.netty.util.concurrent declared as FastThreadLocal Modifier and Type Field Description private static FastThreadLocal<java.util.Queue<java.lang.Runnable>>ImmediateEventExecutor. DELAYED_RUNNABLESA Runnable will be queued if we are executing a Runnable.private static FastThreadLocal<java.lang.Boolean>ImmediateEventExecutor. RUNNINGSet totrueif we are executing a runnable.Methods in io.netty.util.concurrent with parameters of type FastThreadLocal Modifier and Type Method Description private static voidFastThreadLocal. addToVariablesToRemove(InternalThreadLocalMap threadLocalMap, FastThreadLocal<?> variable)private static voidFastThreadLocal. removeFromVariablesToRemove(InternalThreadLocalMap threadLocalMap, FastThreadLocal<?> variable) -
Uses of FastThreadLocal in io.netty.util.internal
Fields in io.netty.util.internal declared as FastThreadLocal Modifier and Type Field Description private static FastThreadLocal<EventExecutor>ThreadExecutorMap. mappings
-