This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Functions | |
void | CreateBackgroundThread () |
Creates the background thread. More... | |
void | InitializeBackgroundThread (string host, int port, string selfinfo, int refreshTime) |
Initialize the background thread by setting the selfinfo and refreshtime. More... | |
Variables | |
int | RefreshTime |
How often to refresh (in milliseconds). More... | |
volatile JVMPI_RawMonitor | BackgroundMonitor |
The monitor used for background notification/shutdown. More... | |
volatile bool | ShutdownRequested |
set to true by external thread when the thread should shutdown. More... |
|
Creates the background thread.
Definition at line 163 of file background.cpp. |
|
Initialize the background thread by setting the selfinfo and refreshtime.
Definition at line 76 of file background.cpp. Referenced by JVM_OnLoad().
00077 { 00078 HostName = host; 00079 PortNumber = port; 00080 SelfInfo = selfinfo; 00081 RefreshTime = refreshTime; 00082 } |
|
The monitor used for background notification/shutdown.
Definition at line 43 of file background.h. |
|
How often to refresh (in milliseconds).
Definition at line 41 of file background.h. |
|
set to true by external thread when the thread should shutdown.
Definition at line 44 of file background.h. |