<< mpi_scilab mpi_scilab DestroyMessagePoint >>

mpi_scilab >> mpi_scilab > CreateMessagePoint

CreateMessagePoint

Creating new message point

Syntax

messagePointInformation = CreateMessagePoint(MessagePointName,ServerNode,Port)

Arguments

MessagePointName

New message point's name

ServerNode

Network name or IP of node

Port

Message server's port

messagePointInformation

Information about created message point. Matrix of string

Description

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.

Examples

//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);

See also


Report an issue
<< mpi_scilab mpi_scilab DestroyMessagePoint >>