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
Fields in io.netty.util.concurrent declared as InternalThreadLocalMap Modifier and Type Field Description private InternalThreadLocalMap
FastThreadLocalThread. threadLocalMap
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 private static void
FastThreadLocal. addToVariablesToRemove(InternalThreadLocalMap threadLocalMap, FastThreadLocal<?> variable)
V
FastThreadLocal. get(InternalThreadLocalMap threadLocalMap)
Returns the current value for the specified thread local map.private V
FastThreadLocal. initialize(InternalThreadLocalMap threadLocalMap)
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.private static void
FastThreadLocal. removeFromVariablesToRemove(InternalThreadLocalMap threadLocalMap, FastThreadLocal<?> variable)
void
FastThreadLocal. set(InternalThreadLocalMap threadLocalMap, V value)
Set the value for the specified thread local map.private void
FastThreadLocal. setKnownNotUnset(InternalThreadLocalMap threadLocalMap, V value)
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
Fields in io.netty.util.internal with type parameters of type InternalThreadLocalMap Modifier and Type Field Description private static java.lang.ThreadLocal<InternalThreadLocalMap>
InternalThreadLocalMap. slowThreadLocalMap
Methods in io.netty.util.internal that return InternalThreadLocalMap Modifier and Type Method Description private static InternalThreadLocalMap
InternalThreadLocalMap. fastGet(FastThreadLocalThread thread)
static InternalThreadLocalMap
InternalThreadLocalMap. get()
static InternalThreadLocalMap
InternalThreadLocalMap. getIfSet()
private static InternalThreadLocalMap
InternalThreadLocalMap. slowGet()
-