#include <ID_Factory.h>
Public Member Functions | |
TAO_Notify_ID_Factory (void) | |
Constuctor. | |
~TAO_Notify_ID_Factory () | |
Destructor. | |
TAO_Notify_Object::ID | id (void) |
void | set_last_used (const TAO_Notify_Object::ID id) |
Private Attributes | |
TAO_Notify_Object::ID | seed_ |
TAO_SYNCH_MUTEX | mtx_ |
Definition at line 35 of file ID_Factory.h.
|
Constuctor.
Definition at line 13 of file ID_Factory.cpp.
00014 : seed_ (0) 00015 { 00016 } |
|
Destructor.
Definition at line 18 of file ID_Factory.cpp.
00019 { 00020 } |
|
Definition at line 8 of file ID_Factory.inl. References ACE_GUARD_RETURN, seed_, and TAO_SYNCH_MUTEX. Referenced by TAO_Notify_POA_Helper::activate(), and TAO_Notify_POA_Helper::get_unique_id().
00009 { 00010 ACE_GUARD_RETURN (TAO_SYNCH_MUTEX, ace_mon, this->mtx_, 0); 00011 return ++seed_; 00012 } |
|
Definition at line 15 of file ID_Factory.inl. References ACE_GUARD, TAO_Notify_Object::ID, seed_, and TAO_SYNCH_MUTEX. Referenced by TAO_Notify_POA_Helper::activate_with_id(), and TAO_Notify_FilterAdmin::load_child().
|
|
Definition at line 51 of file ID_Factory.h. |
|
Definition at line 50 of file ID_Factory.h. Referenced by id(), and set_last_used(). |