ACE
6.4.2
|
Key used in the Active Object Map. More...
#include <Active_Map_Manager.h>
Classes | |
struct | key_data |
Data for the Active Object Map Key. More... | |
Public Member Functions | |
ACE_Active_Map_Manager_Key (void) | |
Default constructor. More... | |
ACE_Active_Map_Manager_Key (ACE_UINT32 slot_index, ACE_UINT32 slot_generation) | |
ACE_UINT32 | slot_index (void) const |
Get the slot_index. More... | |
void | slot_index (ACE_UINT32 i) |
Set the slot_index. More... | |
ACE_UINT32 | slot_generation (void) const |
Get the slot_generation number. More... | |
void | slot_generation (ACE_UINT32 g) |
Set the slot_generation number. More... | |
void | decode (const void *data) |
void | encode (void *data) const |
bool | operator== (const ACE_Active_Map_Manager_Key &rhs) const |
Compare keys. More... | |
bool | operator!= (const ACE_Active_Map_Manager_Key &rhs) const |
void | increment_slot_generation_count (void) |
Increment the slot_generation number. More... | |
Static Public Member Functions | |
static size_t | size (void) |
Size required to store information about active key. More... | |
Private Attributes | |
key_data | key_data_ |
Data for the Active Object Map Key. More... | |
Key used in the Active Object Map.
This key keeps information of the index and the generation count of the slot it represents. Since the index information is part of the key, lookups are super fast and predictable,
|
inline |
Default constructor.
|
inline |
Constructor given the slot_index and slot_generation number. This is useful once the user has somehow recovered the slot_index and slot_generation number from the client.
|
inline |
Recover state of active key from data. User must make sure that data encoded using the encode() method.
|
inline |
Encode state of the active key into data. data must be as big as the value returned from size().
|
inline |
Increment the slot_generation number.
|
inline |
|
inline |
Compare keys.
|
inlinestatic |
Size required to store information about active key.
|
inline |
Get the slot_generation number.
|
inline |
Set the slot_generation number.
|
inline |
Get the slot_index.
|
inline |
Set the slot_index.
|
private |
Data for the Active Object Map Key.