コード例 #1
0
        ////////////////////////////////////////////////////////////////////////////////////////////////////
        /// \fn public EchoImprovedMessage(EchoImprovedNetwork 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        (EchoImprovedNetwork) - 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 EchoImprovedMessage(EchoImprovedNetwork 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)
        {
        }
コード例 #2
0
        ////////////////////////////////////////////////////////////////////////////////////////////////////
        /// \fn public EchoImprovedChannel(EchoImprovedNetwork network) : base(network)
        ///
        /// \brief Constructor.
        ///
        /// \par Description.
        ///
        /// \par Algorithm.
        ///
        /// \par Usage Notes.
        ///      It is not recomended to change the constructor. All the attributes has to be inserted
        ///      to the pa or or dictionaries in the Init... methods         ///
        ///
        /// \author Ilanh
        /// \date 27/06/2017
        ///
        /// \param network  (EchoImprovedNetwork) - The network.
        ////////////////////////////////////////////////////////////////////////////////////////////////////

        public EchoImprovedChannel(EchoImprovedNetwork network) : base(network)
        {
        }
コード例 #3
0
        ////////////////////////////////////////////////////////////////////////////////////////////////////
        /// \fn public static bool EchoImprovedChannelDefaultAttributeCheck(EchoImprovedNetwork 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 =  EchoImprovedChannelDefaultAttributeCheck
        ///
        ///       // Setting the method to an attribute while creation
        ///       pa.Add(c.pak.SomeKey, new Attribute {Value = SomeValue, EndInputOperationMethod =  EchoImprovedChannelDefaultAttributeCheck})
        /// ~~~
        ///
        /// \author Ilan Hindy
        /// \date 24/01/2017
        ///
        /// \param       network          (EchoImprovedNetwork) - 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 EchoImprovedChannelDefaultAttributeCheck(EchoImprovedNetwork network, NetworkElement networkElement, Attribute parentAttribute, Attribute attribute, string newValue, out string errorMessage)
        {
            errorMessage = "";
            return(true);
        }
コード例 #4
0
        ////////////////////////////////////////////////////////////////////////////////////////////////////
        /// \fn public EchoImprovedChannel(EchoImprovedNetwork 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          (EchoImprovedNetwork) - The network.
        /// \param id               (int) - The identifier.
        /// \param sourceProcessId  (int) - Identifier for the source process.
        /// \param destProcessId    (int) - Identifier for the destination process.
        ////////////////////////////////////////////////////////////////////////////////////////////////////

        public EchoImprovedChannel(EchoImprovedNetwork network, int id, int sourceProcessId, int destProcessId)
            : base(network, id, sourceProcessId, destProcessId)
        {
        }
コード例 #5
0
        ////////////////////////////////////////////////////////////////////////////////////////////////////
        /// \fn public EchoImprovedMessage(EchoImprovedNetwork network, object messageType, EchoImprovedChannel 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       (EchoImprovedNetwork) - The network.
        /// \param messageType  (dynamic) - Type of the message.
        /// \param channel      (EchoImprovedChannel) - The channel.
        /// \param messageName   (string) - Name of the message.
        /// \param round        (Optional)  (int) - The round.
        /// \param logicalClock (Optional)  (int) - The logical clock.
        ///
        ////////////////////////////////////////////////////////////////////////////////////////////////////

        public EchoImprovedMessage(EchoImprovedNetwork network, object messageType, EchoImprovedChannel channel, string messageName, int round = 0, int logicalClock = 0) :
            base(network, messageType, channel, messageName, round, logicalClock)
        {
        }
コード例 #6
0
        ////////////////////////////////////////////////////////////////////////////////////////////////////
        /// \fn public EchoImprovedMessage(EchoImprovedNetwork 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        (EchoImprovedNetwork) - The network.
        /// \param messageString (string) - The message string.
        ///
        ////////////////////////////////////////////////////////////////////////////////////////////////////

        public EchoImprovedMessage(EchoImprovedNetwork network, string messageString) : base(network, messageString)
        {
        }
コード例 #7
0
        ////////////////////////////////////////////////////////////////////////////////////////////////////
        /// \fn public EchoImprovedMessage(EchoImprovedMessage sourceMessage, EchoImprovedChannel sendingChannel): base(sourceMessage, sendingChannel)
        ///
        /// \brief Constructor.
        ///
        /// \par Description.
        ///      A message that is duplicatted to the source except for the channel parameters.
        ///
        /// \par Algorithm.
        ///
        /// \par Usage Notes.
        ///      This constructor is usfull when you want to forwared a massege to other channels
        ///
        /// \author Ilanh
        /// \date 14/03/2017
        ///
        /// \param sourceMessage  (EchoImprovedMessage) - Message describing the source.
        /// \param sendingChannel (EchoImprovedChannel) - The sending channel.
        ////////////////////////////////////////////////////////////////////////////////////////////////////

        public EchoImprovedMessage(EchoImprovedNetwork network, EchoImprovedMessage sourceMessage, EchoImprovedChannel sendingChannel) :
            base(network, sourceMessage, sendingChannel)
        {
        }
コード例 #8
0
        ////////////////////////////////////////////////////////////////////////////////////////////////////
        /// \fn public EchoImprovedMessage(EchoImprovedNetwork network, EchoImprovedMessage 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       (EchoImprovedNetwork) - The network.
        /// \param sourceMessage (EchoImprovedMessage) - Message describing the source.
        ////////////////////////////////////////////////////////////////////////////////////////////////////

        public EchoImprovedMessage(EchoImprovedNetwork network, EchoImprovedMessage sourceMessage) : base(network, sourceMessage)
        {
        }
コード例 #9
0
        ////////////////////////////////////////////////////////////////////////////////////////////////////
        /// \fn public EchoImprovedMessage(EchoImprovedNetwork 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  (EchoImprovedNetwork) - The network.
        ////////////////////////////////////////////////////////////////////////////////////////////////////

        public EchoImprovedMessage(EchoImprovedNetwork network) : base(network)
        {
        }
コード例 #10
0
        ////////////////////////////////////////////////////////////////////////////////////////////////////
        /// \fn public EchoImprovedProcess(EchoImprovedNetwork network) : base(network)
        ///
        /// \brief Constructor.
        ///
        /// \par Description.
        ///
        /// \par Algorithm.
        ///
        /// \par Usage Notes.
        ///      It is not recomended to change the constructor. All the attributes has to be inserted
        ///      to the pa or or dictionaries in the Init... methods
        ///
        /// \author Ilanh
        /// \date 27/06/2017
        ///
        /// \param network  (EchoImprovedNetwork) - The network.
        ////////////////////////////////////////////////////////////////////////////////////////////////////

        public EchoImprovedProcess(EchoImprovedNetwork network) : base(network)
        {
        }