#include <Active_Object_Map.h>
Inheritance diagram for TAO_Id_Hint_Strategy:
Public Member Functions | |
virtual | ~TAO_Id_Hint_Strategy (void) |
Virtual destructor. | |
virtual int | recover_key (const PortableServer::ObjectId &system_id, PortableServer::ObjectId &user_id)=0 |
Find the user id from the system id. | |
virtual int | bind (TAO_Active_Object_Map_Entry &entry)=0 |
Add to map. | |
virtual int | unbind (TAO_Active_Object_Map_Entry &entry)=0 |
Remove from map. | |
virtual int | find (const PortableServer::ObjectId &system_id, TAO_Active_Object_Map_Entry *&entry)=0 |
Find system id. | |
virtual size_t | hint_size (void)=0 |
How big is the hint generated by this strategy? | |
virtual int | system_id (PortableServer::ObjectId_out system_id, TAO_Active_Object_Map_Entry &entry)=0 |
Get the system id associated with this entry. |
Strategy for implementing points of variation between the active hint and the no hint policies.
Definition at line 529 of file Active_Object_Map.h.
|
Virtual destructor.
Definition at line 815 of file Active_Object_Map.cpp.
00816 { 00817 } |
|
|
Find system id.
Implemented in TAO_Active_Hint_Strategy, and TAO_No_Hint_Strategy. Referenced by TAO_Persistent_Strategy::find_servant_using_system_id_and_user_id(), and TAO_Transient_Strategy::find_servant_using_system_id_and_user_id(). |
|
How big is the hint generated by this strategy?
Implemented in TAO_Active_Hint_Strategy, and TAO_No_Hint_Strategy. |
|
Find the user id from the system id.
Implemented in TAO_Active_Hint_Strategy, and TAO_No_Hint_Strategy. Referenced by TAO_Active_Object_Map::find_user_id_using_system_id(). |
|
Get the system id associated with this entry.
Implemented in TAO_Active_Hint_Strategy, and TAO_No_Hint_Strategy. Referenced by TAO_Active_Object_Map::bind_using_system_id_returning_system_id(), TAO_Active_Object_Map::find_servant_and_system_id_using_user_id(), TAO_Unique_Id_Strategy::find_system_id_using_servant(), and TAO_Active_Object_Map::find_system_id_using_user_id(). |
|