//////////////////////////////////////////////////////////////////////////////////////////////////// /// \fn public ChandyLamportMessage(ChandyLamportMessage sourceMessage, ChandyLamportChannel sendingChannel): base(sourceMessage, sendingChannel) /// /// \brief Constructor. /// /// \par Description. /// A message that is duplicated to the source except for the channel parameters. /// /// \par Algorithm. /// /// \par Usage Notes. /// This constructor is useful when you want to forward a message to other channels /// /// \author Ilanh /// \date 14/03/2017 /// /// \param sourceMessage (ChandyLamportMessage) - Message describing the source. /// \param sendingChannel (ChandyLamportChannel) - The sending channel. //////////////////////////////////////////////////////////////////////////////////////////////////// public ChandyLamportMessage(ChandyLamportNetwork network, ChandyLamportMessage sourceMessage, ChandyLamportChannel sendingChannel) : base(network, sourceMessage, sendingChannel) { }
//////////////////////////////////////////////////////////////////////////////////////////////////// /// \fn public ChandyLamportMessage(ChandyLamportNetwork network, ChandyLamportMessage sourceMessage): base(network, sourceMessage) /// /// \brief Constructor. /// /// \par Description. /// Constructor that generates a duplication of a source message. /// /// \par Algorithm. /// /// \par Usage Notes. /// /// \author Ilanh /// \date 27/06/2017 /// /// \param network (ChandyLamportNetwork) - The network. /// \param sourceMessage (ChandyLamportMessage) - Message describing the source. //////////////////////////////////////////////////////////////////////////////////////////////////// public ChandyLamportMessage(ChandyLamportNetwork network, ChandyLamportMessage sourceMessage) : base(network, sourceMessage) { }