Uses of Class
io.netty.util.concurrent.FastThreadLocal
Packages that use FastThreadLocal
Package
Description
Abstraction of a byte buffer - the fundamental data structure
to represent a low-level binary and text message.
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
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.
Encoder, decoder and their related message types for HTTP.
Encoder, decoder, handshakers and their related message types for
Web Socket data frames.
STOMP codec
Utility classes that helps easier development of TLS/SSL applications.
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.
Utility classes used across multiple packages.
Utility classes for concurrent / async tasks.
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.bufferFields in io.netty.buffer declared as FastThreadLocalModifier and TypeFieldDescriptionprivate static final FastThreadLocal
<byte[]> ByteBufUtil.BYTE_ARRAYS
private final FastThreadLocal
<Object> AdaptivePoolingAllocator.threadLocalMagazine
-
Uses of FastThreadLocal in io.netty.channel
Fields in io.netty.channel declared as FastThreadLocalModifier and TypeFieldDescriptionprivate static final FastThreadLocal
<Map<Class<? extends ChannelHandler>, Integer>> ChannelHandlerMask.MASKS
private static final FastThreadLocal
<Map<Class<?>, String>> DefaultChannelPipeline.nameCaches
private static final FastThreadLocal
<ByteBuffer[]> ChannelOutboundBuffer.NIO_BUFFERS
-
Uses of FastThreadLocal in io.netty.handler.codec
Fields in io.netty.handler.codec declared as FastThreadLocalModifier and TypeFieldDescriptionprivate static final FastThreadLocal
<CodecOutputList.CodecOutputLists> CodecOutputList.CODEC_OUTPUT_LISTS_POOL
private static final FastThreadLocal
<DateFormatter> DateFormatter.INSTANCES
-
Uses of FastThreadLocal in io.netty.handler.codec.compression
Fields in io.netty.handler.codec.compression declared as FastThreadLocal -
Uses of FastThreadLocal in io.netty.handler.codec.http
Fields in io.netty.handler.codec.http declared as FastThreadLocalModifier and TypeFieldDescriptionprivate static final FastThreadLocal
<HttpHeaderDateFormat> HttpHeaderDateFormat.dateFormatThreadLocal
Deprecated. -
Uses of FastThreadLocal in io.netty.handler.codec.http.websocketx
Fields in io.netty.handler.codec.http.websocketx declared as FastThreadLocalModifier and TypeFieldDescriptionprivate static final FastThreadLocal
<MessageDigest> WebSocketUtil.MD5
private static final FastThreadLocal
<MessageDigest> WebSocketUtil.SHA1
Methods in io.netty.handler.codec.http.websocketx with parameters of type FastThreadLocalModifier and TypeMethodDescriptionprivate static byte[]
WebSocketUtil.digest
(FastThreadLocal<MessageDigest> digestFastThreadLocal, byte[] data) -
Uses of FastThreadLocal in io.netty.handler.codec.stomp
Fields in io.netty.handler.codec.stomp declared as FastThreadLocalModifier and TypeFieldDescriptionprivate static final FastThreadLocal
<LinkedHashMap<CharSequence, CharSequence>> StompSubframeEncoder.ESCAPE_HEADER_KEY_CACHE
-
Uses of FastThreadLocal in io.netty.handler.ssl.util
Fields in io.netty.handler.ssl.util declared as FastThreadLocalModifier and TypeFieldDescriptionprivate static final FastThreadLocal
<SimpleKeyManagerFactory.SimpleKeyManagerFactorySpi> SimpleKeyManagerFactory.CURRENT_SPI
SimpleKeyManagerFactory.SimpleKeyManagerFactorySpi
must have a reference toSimpleKeyManagerFactory
to delegate its callbacks back toSimpleKeyManagerFactory
.private static final FastThreadLocal
<SimpleTrustManagerFactory.SimpleTrustManagerFactorySpi> SimpleTrustManagerFactory.CURRENT_SPI
SimpleTrustManagerFactory.SimpleTrustManagerFactorySpi
must have a reference toSimpleTrustManagerFactory
to delegate its callbacks back toSimpleTrustManagerFactory
.private final FastThreadLocal
<MessageDigest> FingerprintTrustManagerFactory.tlmd
-
Uses of FastThreadLocal in io.netty.resolver.dns
Fields in io.netty.resolver.dns declared as FastThreadLocalModifier and TypeFieldDescriptionprivate final FastThreadLocal
<DnsServerAddressStream> ThreadLocalNameServerAddressStream.threadLocal
-
Uses of FastThreadLocal in io.netty.util
Fields in io.netty.util declared as FastThreadLocalModifier and TypeFieldDescriptionprivate final FastThreadLocal
<Recycler.LocalPool<T>> Recycler.threadLocal
-
Uses of FastThreadLocal in io.netty.util.concurrent
Fields in io.netty.util.concurrent declared as FastThreadLocalModifier and TypeFieldDescriptionprivate static final FastThreadLocal
<Queue<Runnable>> ImmediateEventExecutor.DELAYED_RUNNABLES
A Runnable will be queued if we are executing a Runnable.private static final FastThreadLocal
<Boolean> ImmediateEventExecutor.RUNNING
Set totrue
if we are executing a runnable.Methods in io.netty.util.concurrent with parameters of type FastThreadLocalModifier and TypeMethodDescriptionprivate static void
FastThreadLocal.addToVariablesToRemove
(InternalThreadLocalMap threadLocalMap, FastThreadLocal<?> variable) private static void
FastThreadLocal.removeFromVariablesToRemove
(InternalThreadLocalMap threadLocalMap, FastThreadLocal<?> variable) -
Uses of FastThreadLocal in io.netty.util.internal
Fields in io.netty.util.internal declared as FastThreadLocalModifier and TypeFieldDescriptionprivate static final FastThreadLocal
<EventExecutor> ThreadExecutorMap.mappings