Apache log4cxx  Version 0.10.0
ThreadLocal Class Reference

This class provides thread-local variables. More...

Public Member Functions

 ThreadLocal ()
 Create new instance.
 
 ~ThreadLocal ()
 Destructor.
 
void set (void *priv)
 Sets the value in the current thread's copy of this thread-local variable.
 
void * get ()
 Returns the value in the current thread's copy of this thread-local variable.
 

Detailed Description

This class provides thread-local variables.

This class is similar in function to java.lang.ThreadLocal.

Constructor & Destructor Documentation

Create new instance.

Destructor.

Member Function Documentation

void* get ( )

Returns the value in the current thread's copy of this thread-local variable.

Returns
value of thread-local variable for the current thread.
void set ( void *  priv)

Sets the value in the current thread's copy of this thread-local variable.

Parameters
privnew value.

The documentation for this class was generated from the following file: