Sending message by message point
sendingMessageInformation = SendMessage(MessagePointName, AdresatMessagePointName, SendingMessage)
The name of the messaging point through which the message is sended. Matrix of string
Name of the destination messaging point to which the message is being sent
Forwards the message
Forwarded message information
Forwards the message through the messaging point of the sending process to the messaging point of the destination process
//Creating a new message point messagePointInformation = CreateMessagePoint('MessagePoint1','192.168.0.153',3369); disp(messagePointInformation); //Sending message sendingMessageInformation = SendMessage('MessagePoint1', 'MessagePoint2', 'Message proba'); disp(sendingMessageInformation); //Deleted the created message point messagePointInformation = DestroyMessagePoint('MessagePoint1'); disp(messagePointInformation); | ![]() | ![]() |