Creating new message point
messagePointInformation = CreateMessagePoint(MessagePointName,ServerNode,Port)
New message point's name
Network name or IP of node
Message server's port
Information about created message point. Matrix of string
Creating a new message point. Creates a new network connection to the message server on the appropriate port on the node on its name or IP.
//Creating a new message point messagePointInformation = CreateMessagePoint('MessagePoint1','192.168.0.153',3369); disp(messagePointInformation); //Deleted the created message point messagePointInformation = DestroyMessagePoint('MessagePoint1'); disp(messagePointInformation); | ![]() | ![]() |