send package:distributed-process

Send a message
Send a message on a typed channel
The (unique) ID of this send port
The ID of the process that will receive messages sent on this port
Process-local ID of the channel
The ID of the process that will receive messages sent on this port
The send send of a typed channel (serializable)
A send port is identified by a SendPortId. You cannot send directly to a SendPortId; instead, use newChan to create a SendPort.
The send send of a typed channel (serializable)
Named send to a process in the local registry (asynchronous)
Named send to a process in a remote registry (asynchronous)
Named send to a process in the local registry (asynchronous). This function makes no attempt to serialize and (in the case when the destination process resides on the same local node) therefore ensure that the payload is fully evaluated before it is delivered.
Named send to a process in a remote registry (asynchronous) This function makes no attempt to serialize and (in the case when the destination process resides on the same local node) therefore ensure that the payload is fully evaluated before it is delivered.
Unsafe variant of send. This function makes no attempt to serialize and (in the case when the destination process resides on the same local node) therefore ensure that the payload is fully evaluated before it is delivered.
Send a message on a typed channel. This function makes no attempt to serialize and (in the case when the ReceivePort resides on the same local node) therefore ensure that the payload is fully evaluated before it is delivered.
Unsafe variant of usend. This function makes no attempt to serialize the message when the destination process resides on the same local node. Therefore, a local receiver would need to be prepared to cope with any errors resulting from evaluation of the message.
Send a message unreliably. Unlike send, this function is insensitive to reconnect. It will try to send the message regardless of the history of connection failures between the nodes. Message passing with usend is ordered for a given sender and receiver if the messages arrive at all.
CP version of send