Esempio n. 1
0
 public void setAs(SendRec value)
 {
     m_PresenceVector   = value.getPresenceVector();
     m_ReliableDelivery = value.getReliableDelivery();
     m_Priority         = value.getPriority();
     m_DestinationID.setAs(value.getDestinationID());
     m_SourceID.setAs(value.getSourceID());
     m_MessagePayload.setAs(value.getMessagePayload());
 }
Esempio n. 2
0
 public bool isEquals(SendRec value)
 {
     if ((m_PresenceVector != value.getPresenceVector()) ||
         (m_ReliableDelivery != value.getReliableDelivery()) ||
         (m_Priority != value.getPriority()) ||
         (m_DestinationID.notEquals(value.getDestinationID())) ||
         (m_SourceID.notEquals(value.getSourceID())) ||
         (m_MessagePayload.notEquals(value.getMessagePayload())))
     {
         return(false);
     }
     return(true);
 }
Esempio n. 3
0
                public SendRec(SendRec value)
                {
                    m_DestinationID  = new DestinationID();
                    m_SourceID       = new SourceID();
                    m_MessagePayload = new MessagePayload();

                    // Copy the values
                    m_PresenceVector   = value.getPresenceVector();
                    m_ReliableDelivery = value.getReliableDelivery();
                    m_DestinationID    = value.getDestinationID();
                    m_SourceID         = value.getSourceID();
                    m_Priority         = value.getPriority();
                    m_MessagePayload   = value.getMessagePayload();
                }
Esempio n. 4
0
 public void setAs(SendRec value)
 {
     m_PresenceVector = value.getPresenceVector();
     m_ReliableDelivery = value.getReliableDelivery();
     m_Priority = value.getPriority();
     m_DestinationID.setAs(value.getDestinationID());
     m_SourceID.setAs(value.getSourceID());
     m_MessagePayload.setAs(value.getMessagePayload());
 }
Esempio n. 5
0
 public bool isEquals(SendRec value)
 {
     if ((m_PresenceVector != value.getPresenceVector()) ||
         (m_ReliableDelivery != value.getReliableDelivery()) ||
         (m_Priority != value.getPriority()) ||
         (m_DestinationID.notEquals(value.getDestinationID())) ||
         (m_SourceID.notEquals(value.getSourceID())) ||
         (m_MessagePayload.notEquals(value.getMessagePayload())))
     {
         return false;
     }
     return true;
 }
Esempio n. 6
0
                public SendRec(SendRec value)
                {
                    m_DestinationID = new DestinationID();
                    m_SourceID = new SourceID();
                    m_MessagePayload = new MessagePayload();

                    // Copy the values
                    m_PresenceVector = value.getPresenceVector();
                    m_ReliableDelivery = value.getReliableDelivery();
                    m_DestinationID = value.getDestinationID();
                    m_SourceID = value.getSourceID();
                    m_Priority = value.getPriority();
                    m_MessagePayload = value.getMessagePayload();
                }