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

Diff for /pegasus/src/Pegasus/Common/Message.h between version 1.77 and 1.78

version 1.77, 2006/07/12 19:46:26 version 1.78, 2006/07/14 20:12:46
Line 119 
Line 119 
 /** The Message class and derived classes are used to pass messages between /** The Message class and derived classes are used to pass messages between
     modules. Messages are passed between modules using the message queues     modules. Messages are passed between modules using the message queues
     (see MessageQueue class). Derived classes may add their own fields.     (see MessageQueue class). Derived classes may add their own fields.
     This base class defines two common fields: type, which is the type of      This base class defines a common type field, which is the type of
     the message, and key which is a key value whose meaning is defined by      the message.
     the derived class. The MessageQueue class provides methods for finding  
     messages by both type and key.  
  
     The Message class also provides previous and next pointers which are     The Message class also provides previous and next pointers which are
     used to place the messages on a queue by the MessageQueue class.     used to place the messages on a queue by the MessageQueue class.
Line 134 
Line 132 
       Message(       Message(
          Uint32 type,          Uint32 type,
          Uint32 destination = 0,          Uint32 destination = 0,
          Uint32 key = getNextKey(),  
          Uint32 routing_code = 0,          Uint32 routing_code = 0,
          Uint32 mask = message_mask::type_legacy)          Uint32 mask = message_mask::type_legacy)
          :          :
          _type(type),          _type(type),
          _key(key),  
          _routing_code(routing_code),          _routing_code(routing_code),
          _mask(mask),          _mask(mask),
          _httpMethod (HTTP_METHOD__POST),          _httpMethod (HTTP_METHOD__POST),
Line 160 
Line 156 
          if (this != &msg)          if (this != &msg)
          {          {
             _type = msg._type;             _type = msg._type;
             _key = msg._key;  
             _routing_code = msg._routing_code;             _routing_code = msg._routing_code;
             _mask = msg._mask;             _mask = msg._mask;
             _last_thread_id = msg._last_thread_id;             _last_thread_id = msg._last_thread_id;
Line 186 
Line 181 
  
       void setType(Uint32 type) { _type = type; }       void setType(Uint32 type) { _type = type; }
  
       Uint32 getKey() const { return _key; }  
   
       void setKey(Uint32 key) { _key = key; }  
   
       Uint32 getRouting() const { return _routing_code; }       Uint32 getRouting() const { return _routing_code; }
       void setRouting(Uint32 routing) { _routing_code = routing; }       void setRouting(Uint32 routing) { _routing_code = routing; }
  
Line 255 
Line 246 
  
       const Message* getPrevious() const { return _prev; }       const Message* getPrevious() const { return _prev; }
  
       static Uint32 getNextKey() { return _keyFactory.getID(); }  
   
       static CIMOperationType convertMessageTypetoCIMOpType(Uint32 type);       static CIMOperationType convertMessageTypetoCIMOpType(Uint32 type);
  
 #ifdef PEGASUS_DEBUG #ifdef PEGASUS_DEBUG
Line 290 
Line 279 
          return false;          return false;
       }       }
  
       // << Tue Jul  1 13:41:02 2003 mdd >> pep_88 -  
       // assist in synchronizing responses with requests  
   
       void synch_response(Message *req)  
       {  
          _key = req->_key;  
          _routing_code = req->_routing_code;  
       }  
   
                         // set the message index indicating what piece (or sequence) this is                         // set the message index indicating what piece (or sequence) this is
                         // message indexes start at zero                         // message indexes start at zero
                         void setIndex(Uint32 index) { _index = index; }                         void setIndex(Uint32 index) { _index = index; }
Line 322 
Line 302 
  
    private:    private:
       Uint32 _type;       Uint32 _type;
       Uint32 _key;  
       Uint32 _routing_code;       Uint32 _routing_code;
       Uint32 _mask;       Uint32 _mask;
       HttpMethod _httpMethod;       HttpMethod _httpMethod;
Line 354 
Line 333 
       MessageQueue* _owner;       MessageQueue* _owner;
       Boolean _isComplete;       Boolean _isComplete;
       Uint32 _index;       Uint32 _index;
       static IDFactory _keyFactory;  
  
       friend class cimom;       friend class cimom;
       friend class MessageQueue;       friend class MessageQueue;


Legend:
Removed from v.1.77  
changed lines
  Added in v.1.78

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2