//////////////////////////////////////////////////////////////////////////////////////////////////// /// \fn public TestMessage(TestNetwork network, object messageType, int sourceProcess, int sourcePort, int destProcess, int destPort, string messageName, int round, int logicalClock) : base(network, messageType, sourceProcess, sourcePort, destProcess, destPort, messageName, round, logicalClock) /// /// \brief Constructor. /// /// \par Description. /// Create a message when all the header are given. /// /// \par Algorithm. /// /// \par Usage Notes. /// /// \author Ilanh /// \date 14/03/2017 /// /// \param network (TestNetwork) - The network. /// \param messageType (dynamic) - Type of the message. /// \param sourceProcess (int) - Source process. /// \param sourcePort (int) - Source port. /// \param destProcess (int) - Destination process. /// \param destPort (int) - Destination port. /// \param messageName (string) - Name of the message. /// \param round (int) - The round. /// \param logicalClock (int) - The logical clock. //////////////////////////////////////////////////////////////////////////////////////////////////// public TestMessage(TestNetwork network, object messageType, int sourceProcess, int sourcePort, int destProcess, int destPort, string messageName, int round, int logicalClock) : base(network, messageType, sourceProcess, sourcePort, destProcess, destPort, messageName, round, logicalClock) { }
//////////////////////////////////////////////////////////////////////////////////////////////////// /// \fn public TestProcess(TestNetwork network) : base(network) /// /// \brief Constructor. /// /// \par Description. /// /// \par Algorithm. /// /// \par Usage Notes. /// It is not recommended to change the constructor. All the attributes has to be inserted /// to the pa or dictionaries in the Init... methods /// /// \author Ilanh /// \date 27/06/2017 /// /// \param network (TestNetwork) - The network. //////////////////////////////////////////////////////////////////////////////////////////////////// public TestProcess(TestNetwork network) : base(network) { }
//////////////////////////////////////////////////////////////////////////////////////////////////// /// \fn public TestChannel(TestNetwork network) : base(network) /// /// \brief Constructor. /// /// \par Description. /// /// \par Algorithm. /// /// \par Usage Notes. /// It is not recommended to change the constructor. All the attributes has to be inserted /// to the pa or dictionaries in the Init... methods /// /// /// \author Ilanh /// \date 27/06/2017 /// /// \param network (TestNetwork) - The network. //////////////////////////////////////////////////////////////////////////////////////////////////// public TestChannel(TestNetwork network) : base(network) { }
//////////////////////////////////////////////////////////////////////////////////////////////////// /// \fn public static bool TestChannelDefaultAttributeCheck(TestNetwork network, NetworkElement networkElement, Attribute parentAttribute, Attribute attribute, string newValue, out string errorMessage) /// /// \brief A prototype for attribute checking. /// /// \par Description. /// /// \par Algorithm. /// /// \par Usage Notes. /// -# Each Attribute can be assigned a value check that will be performed when changing the /// attribute from the channel edit window while in design mode /// -# For each attribute that you want to add a check to one method with the prototype of the /// following method have to be designed /// -# In order to add the check to the attribute you have to set the EndInputOperationMethod /// member of the Attribute with the method you generated for example : /// ~~~{.cs} /// // Setting the method to an existing attribute /// attribute.EndInputOperationMethod = TestChannelDefaultAttributeCheck /// /// // Setting the method to an attribute while creation /// pa.Add(c.pak.SomeKey, new Attribute {Value = SomeValue, EndInputOperationMethod = TestChannelDefaultAttributeCheck}) /// ~~~ /// /// \author Ilan Hindy /// \date 24/01/2017 /// /// \param network (TestNetwork) - The network. /// \param networkElement (NetworkElement) - The network element. /// \param parentAttribute (Attribute) - The parent attribute. /// \param attribute (Attribute) - The attribute. /// \param newValue (string) - The new value. /// \param [out] errorMessage (out string) - Message describing the error. /// /// \return True if it's OK to change the attribute's value. //////////////////////////////////////////////////////////////////////////////////////////////////// public static bool TestChannelDefaultAttributeCheck(TestNetwork network, NetworkElement networkElement, Attribute parentAttribute, Attribute attribute, string newValue, out string errorMessage) { errorMessage = ""; return(true); }
//////////////////////////////////////////////////////////////////////////////////////////////////// /// \fn public TestChannel(TestNetwork network, int id, int sourceProcessId, int destProcessId) : base(network, id, sourceProcessId, destProcessId) /// /// \brief Constructor. /// /// \par Description. /// /// \par Algorithm. /// /// \par Usage Notes. /// /// \author Ilanh /// \date 27/06/2017 /// /// \param network (TestNetwork) - The network. /// \param id (int) - The identifier. /// \param sourceProcessId (int) - Identifier for the source process. /// \param destProcessId (int) - Identifier for the destination process. //////////////////////////////////////////////////////////////////////////////////////////////////// public TestChannel(TestNetwork network, int id, int sourceProcessId, int destProcessId) : base(network, id, sourceProcessId, destProcessId) { }
//////////////////////////////////////////////////////////////////////////////////////////////////// /// \fn public TestMessage(TestNetwork network, object messageType, TestChannel channel, string messageName, int round = 0, int logicalClock = 0): base(network, messageType, channel, messageName, round, logicalClock) /// /// \brief Constructor. /// /// \par Description. /// Construct a message from header parameters. /// /// \par Algorithm. /// /// \par Usage Notes. /// /// \author Ilanh /// \date 14/03/2017 /// /// \param network (TestNetwork) - The network. /// \param messageType (dynamic) - Type of the message. /// \param channel (TestChannel) - The channel. /// \param messageName (string) - Name of the message. /// \param round (Optional) (int) - The round. /// \param logicalClock (Optional) (int) - The logical clock. /// //////////////////////////////////////////////////////////////////////////////////////////////////// public TestMessage(TestNetwork network, object messageType, TestChannel channel, string messageName, int round = 0, int logicalClock = 0) : base(network, messageType, channel, messageName, round, logicalClock) { }
//////////////////////////////////////////////////////////////////////////////////////////////////// /// \fn public TestMessage(TestNetwork network, string messageString):base(network, messageString) /// /// \brief Constructor. /// /// \par Description. /// Create a message from string which holds the message XML. /// /// \par Algorithm. /// /// \par Usage Notes. /// /// \author Ilanh /// \date 14/03/2017 /// /// \param network (TestNetwork) - The network. /// \param messageString (string) - The message string. /// //////////////////////////////////////////////////////////////////////////////////////////////////// public TestMessage(TestNetwork network, string messageString) : base(network, messageString) { }
//////////////////////////////////////////////////////////////////////////////////////////////////// /// \fn public TestMessage(TestMessage sourceMessage, TestChannel 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 (TestMessage) - Message describing the source. /// \param sendingChannel (TestChannel) - The sending channel. //////////////////////////////////////////////////////////////////////////////////////////////////// public TestMessage(TestNetwork network, TestMessage sourceMessage, TestChannel sendingChannel) : base(network, sourceMessage, sendingChannel) { }
//////////////////////////////////////////////////////////////////////////////////////////////////// /// \fn public TestMessage(TestNetwork network, TestMessage 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 (TestNetwork) - The network. /// \param sourceMessage (TestMessage) - Message describing the source. //////////////////////////////////////////////////////////////////////////////////////////////////// public TestMessage(TestNetwork network, TestMessage sourceMessage) : base(network, sourceMessage) { }
//////////////////////////////////////////////////////////////////////////////////////////////////// /// \fn public TestMessage(TestNetwork network):base(network) /// /// \brief Constructor. /// /// \par Description. /// /// \par Algorithm. /// /// \par Usage Notes. /// Constructor used by the system. You should not use it /// /// \author Ilanh /// \date 27/06/2017 /// /// \param network (TestNetwork) - The network. //////////////////////////////////////////////////////////////////////////////////////////////////// public TestMessage(TestNetwork network) : base(network) { }