default <T> T |
Context.getLocal(ContextLocal<T> key) |
Get local data associated with key using the concurrent access mode.
|
<T> T |
Context.getLocal(ContextLocal<T> key,
AccessMode accessMode) |
Get local data associated with key using the specified access mode.
|
<T> T |
Context.getLocal(ContextLocal<T> key,
AccessMode accessMode,
Supplier<? extends T> initialValueSupplier) |
Get local data associated with key using the specified access mode.
|
default <T> T |
Context.getLocal(ContextLocal<T> key,
Supplier<? extends T> initialValueSupplier) |
Get local data associated with key using the concurrent access mode.
|
<T> void |
Context.putLocal(ContextLocal<T> key,
AccessMode accessMode,
T value) |
Associate local data with key using the specified access mode.
|
default <T> void |
Context.putLocal(ContextLocal<T> key,
T value) |
Associate local data with key using the concurrent access mode.
|
default <T> void |
Context.removeLocal(ContextLocal<T> key) |
Remove local data associated with key using the concurrent access mode.
|
default <T> void |
Context.removeLocal(ContextLocal<T> key,
AccessMode accessMode) |
Remove local data associated with key using the specified access mode.
|