Uses of Class
io.netty.util.internal.InternalThreadLocalMap
-
Packages that use InternalThreadLocalMap Package Description 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 InternalThreadLocalMap in io.netty.util.concurrent
Methods in io.netty.util.concurrent that return InternalThreadLocalMap Modifier and Type Method Description InternalThreadLocalMap
FastThreadLocalThread. threadLocalMap()
Returns the internal data structure that keeps the thread-local variables bound to this thread.Methods in io.netty.util.concurrent with parameters of type InternalThreadLocalMap Modifier and Type Method Description V
FastThreadLocal. get(InternalThreadLocalMap threadLocalMap)
Returns the current value for the specified thread local map.V
FastThreadLocal. getAndSet(InternalThreadLocalMap threadLocalMap, V value)
Set the value for the specified thread local map.boolean
FastThreadLocal. isSet(InternalThreadLocalMap threadLocalMap)
Returnstrue
if and only if this thread-local variable is set.void
FastThreadLocal. remove(InternalThreadLocalMap threadLocalMap)
Sets the value to uninitialized for the specified thread local map.void
FastThreadLocal. set(InternalThreadLocalMap threadLocalMap, V value)
Set the value for the specified thread local map.void
FastThreadLocalThread. setThreadLocalMap(InternalThreadLocalMap threadLocalMap)
Sets the internal data structure that keeps the thread-local variables bound to this thread. -
Uses of InternalThreadLocalMap in io.netty.util.internal
Methods in io.netty.util.internal that return InternalThreadLocalMap Modifier and Type Method Description static InternalThreadLocalMap
InternalThreadLocalMap. get()
static InternalThreadLocalMap
InternalThreadLocalMap. getIfSet()
-