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 InternalThreadLocalMapFastThreadLocalThread. threadLocalMapMethods in io.netty.util.concurrent that return InternalThreadLocalMap Modifier and Type Method Description InternalThreadLocalMapFastThreadLocalThread. 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 voidFastThreadLocal. addToVariablesToRemove(InternalThreadLocalMap threadLocalMap, FastThreadLocal<?> variable)VFastThreadLocal. get(InternalThreadLocalMap threadLocalMap)Returns the current value for the specified thread local map.private VFastThreadLocal. initialize(InternalThreadLocalMap threadLocalMap)booleanFastThreadLocal. isSet(InternalThreadLocalMap threadLocalMap)Returnstrueif and only if this thread-local variable is set.voidFastThreadLocal. remove(InternalThreadLocalMap threadLocalMap)Sets the value to uninitialized for the specified thread local map; a proceeding call to get() will trigger a call to initialValue().private static voidFastThreadLocal. removeFromVariablesToRemove(InternalThreadLocalMap threadLocalMap, FastThreadLocal<?> variable)voidFastThreadLocal. set(InternalThreadLocalMap threadLocalMap, V value)Set the value for the specified thread local map.private voidFastThreadLocal. setKnownNotUnset(InternalThreadLocalMap threadLocalMap, V value)voidFastThreadLocalThread. 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 (package private) static java.lang.ThreadLocal<InternalThreadLocalMap>UnpaddedInternalThreadLocalMap. slowThreadLocalMapMethods in io.netty.util.internal that return InternalThreadLocalMap Modifier and Type Method Description private static InternalThreadLocalMapInternalThreadLocalMap. fastGet(FastThreadLocalThread thread)static InternalThreadLocalMapInternalThreadLocalMap. get()static InternalThreadLocalMapInternalThreadLocalMap. getIfSet()private static InternalThreadLocalMapInternalThreadLocalMap. slowGet()
-