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.codec.stomp STOMP codecio.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 private class
PooledByteBufAllocator.PoolThreadLocalCache
Fields 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. MASKS
private static FastThreadLocal<java.util.Map<java.lang.Class<?>,java.lang.String>>
DefaultChannelPipeline. nameCaches
private 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_POOL
private 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. dateFormatThreadLocal
Deprecated. -
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. MD5
private static FastThreadLocal<java.security.MessageDigest>
WebSocketUtil. SHA1
Methods 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.codec.stomp
Fields in io.netty.handler.codec.stomp declared as FastThreadLocal Modifier and Type Field Description private static FastThreadLocal<java.util.LinkedHashMap<java.lang.CharSequence,java.lang.CharSequence>>
StompSubframeEncoder. ESCAPE_HEADER_KEY_CACHE
-
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_SPI
SimpleKeyManagerFactory.SimpleKeyManagerFactorySpi
must have a reference toSimpleKeyManagerFactory
to delegate its callbacks back toSimpleKeyManagerFactory
.private static FastThreadLocal<SimpleTrustManagerFactory.SimpleTrustManagerFactorySpi>
SimpleTrustManagerFactory. CURRENT_SPI
SimpleTrustManagerFactory.SimpleTrustManagerFactorySpi
must have a reference toSimpleTrustManagerFactory
to delegate its callbacks back toSimpleTrustManagerFactory
.private 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>
ThreadLocalNameServerAddressStream. threadLocal
-
Uses of FastThreadLocal in io.netty.util
Fields in io.netty.util declared as FastThreadLocal Modifier and Type Field Description private FastThreadLocal<Recycler.LocalPool<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_RUNNABLES
A Runnable will be queued if we are executing a Runnable.private static FastThreadLocal<java.lang.Boolean>
ImmediateEventExecutor. RUNNING
Set totrue
if we are executing a runnable.Methods in io.netty.util.concurrent with parameters of type FastThreadLocal Modifier and Type Method Description private 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 FastThreadLocal Modifier and Type Field Description private static FastThreadLocal<EventExecutor>
ThreadExecutorMap. mappings
-