1#ifndef Cpl_Type_SeqNumber_h_
2#define Cpl_Type_SeqNumber_h_
44 void set( int32_t newValue );
68 inline operator int32_t ( )
const {
return m_counter; }
This class defines a sequence number and the operation that can be performed on it.
Definition SeqNumber.h:30
SeqNumber(int32_t initialValue=1)
Constructor.
bool isValid(void) const
Returns true if the sequence number is valid (i.e NOT in the invalid state)
Definition SeqNumber.h:65
bool compare(const SeqNumber &other) const
This method return true if 'other' matches this sequence number Note: If this instance or 'other' is ...
void invalidate(void)
Forces the sequence number to be invalid.
bool operator!=(const SeqNumber &other) const
Short hand for the !compare() method.
Definition SeqNumber.h:81
bool operator==(const SeqNumber &other) const
Short hand for the compare() method.
Definition SeqNumber.h:78
void set(int32_t newValue)
Sets the sequence number value.
int32_t m_counter
Internal counter.
Definition SeqNumber.h:33
bool compare(int32_t other) const
This method return true if 'other' matches this sequence number Note: If this instance or 'other' is ...
SeqNumber & operator=(const SeqNumber rvalue)
Assignment - does a true copy, i.e. will copy/assign the invalid state.
void increment(void)
This method increment the sequence number and ensure that the new value is valid.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20