jit.net.send Send matrices to a jit.net.recv object via TCP/IP

Use jit.net.send to send matrices and messages over a network connection to an instance of jit.net.recv.

Attributes:
Name Type Description
ip int The IP address to form a connection with (default = 127.0.0.1, the local loopback)
host symbol The domain name to form a connection with (default = localhost)
port int The port to use when creating the connection (default = 7474)
connected (get) int Whether or not the object is currently connected to a jit.net.recv server.
latency (get) int An estimate of the time between a matrix being input to the jit.net.send object and being output from the corresponding jit.net.recv.

Messages:
anything [matrix-name (symbol)]
Any message sent in the object’s right inlet is output by the middle outlet of the connected jit.net.recv.

jit_matrix [matrix-name (symbol)]
Queues the input matrix for sending to a connected jit.net.recv.

Example:

See Also:
jit.broadcast, jit.net.recv, jit.qt.broadcast