| 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. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
InternalThreadLocalMap | 
FastThreadLocalThread.threadLocalMap()
Returns the internal data structure that keeps the thread-local variables bound to this thread. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
V | 
FastThreadLocal.get(InternalThreadLocalMap threadLocalMap)
Returns the current value for the specified thread local map. 
 | 
boolean | 
FastThreadLocal.isSet(InternalThreadLocalMap threadLocalMap)
Returns  
true 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. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static InternalThreadLocalMap | 
InternalThreadLocalMap.get()  | 
static InternalThreadLocalMap | 
InternalThreadLocalMap.getIfSet()  | 
Copyright © 2008–2024 The Netty Project. All rights reserved.