(file) Return to IDFactory.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/IDFactory.h between version 1.1.2.5 and 1.1.2.6

version 1.1.2.5, 2006/06/30 20:52:24 version 1.1.2.6, 2006/06/30 22:37:52
Line 43 
Line 43 
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
  
 /** Experimental class.  /** The IDFactory provides a thread-safe interface for assigning unique
       integer identifiers. The getID() method is used to obtain the next unique
       identifier. The putID(), returns a unique identifier to the id pool. Note
       that if putID() is never called, then getID() will assigns a sequence of
       monotonically increasing ids.
 */ */
 class PEGASUS_COMMON_LINKAGE IDFactory class PEGASUS_COMMON_LINKAGE IDFactory
 { {
 public: public:
  
     IDFactory();      /** Constructor. The firstID argument is the id that is first returned
           by getID().
       */
       IDFactory(Uint32 firstID = 1);
  
       /** Destructor.
       */
     ~IDFactory();     ~IDFactory();
  
     Uint32 getNext();      /** Obtain the next id.
       */
       Uint32 getID() const;
   
       /** Return an id to the pool (optional).
       */
       void putID(Uint32 id);
  
 public: public:
  
     Magic<0x94E91236> _magic;     Magic<0x94E91236> _magic;
     Uint32 _next;      Stack<Uint32> _pool;
       Uint32 _firstID;
       Uint32 _nextID;
     Mutex _mutex;     Mutex _mutex;
 }; };
  


Legend:
Removed from v.1.1.2.5  
changed lines
  Added in v.1.1.2.6

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2