#include <allocArena.h>
Inheritance diagram for AllocArena::
Public Methods | |
AllocArena () | |
Default constructor. | |
virtual | ~AllocArena () |
Destructor. | |
virtual Buffer & | infoToBin (Buffer &b) |
Convert info to binary. More... | |
void * | operator new (size_t sz) |
Overloaded new() operator. | |
void | operator delete (void *unit) |
Overloaded delete() operator. | |
virtual eClassIdent | getClassIdent () |
Class identification. More... | |
virtual int | isActive () |
State of object. More... | |
Public Attributes | |
jint | arenaId |
ID given to the arena. | |
String | arenaName |
name of the arena. | |
int | active |
active arena or not. | |
List< AllocInstance, LI2 > | instances |
instances in this arena. | |
Static Private Attributes | |
Allocator | _allocator |
allocator. |
This class consists of arena data acquired by receiving the JVMPI_EVENT_ARENA_NEW event. If this arena was deleted (JVMPI_EVENT_ARENA_DELETE), the 'active' field equals zero.
Definition at line 57 of file allocArena.h.
|
Class identification.
Reimplemented from IdObject. Definition at line 120 of file allocArena.h. |
|
Convert info to binary. This method converts information data to binary format in which it is sent thru communication interface to client.
Reimplemented from InfoBinaryFormat. Definition at line 41 of file allocArena.cpp. |
|
State of object. Once an object is unactive, it remains unactive forever.
Reimplemented from IdObject. Definition at line 128 of file allocArena.h. |