Java io.netty.util.concurrent FastThreadLocal fields, constructors, methods, implement or subclass

Example usage for Java io.netty.util.concurrent FastThreadLocal fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.util.concurrent FastThreadLocal.

The text is from its open source code.

Constructor

Method

voiddestroy()
Destroys the data structure that keeps all FastThreadLocal variables accessed from non- FastThreadLocalThread s.
Vget()
Returns the current value for the current thread
voidremove()
Sets the value to uninitialized; a proceeding call to get() will trigger a call to initialValue().
voidremoveAll()
Removes all FastThreadLocal variables bound to the current thread.
voidset(V value)
Set the value for the current thread.