zmq_ipc.txt 843 Bytes
Newer Older
1 2
zmq_ipc(7)
==========
3

4 5 6 7 8 9 10 11

NAME
----
zmq_ipc - 0MQ transport to pass messages between processes


SYNOPSIS
--------
12 13
Inter-process transport is optimised for passing messages between processes on
the same physical machine.
14 15


16 17
CONNECTION STRING
-----------------
18
Connection string for inproc transport is "ipc://" followed by a file name.
19 20 21
The file will be used as placeholder for a message endpoint. (UNIX domain
sockets associate a file with the listening socket in a similar way.)

22
----
23 24
    ipc:///tmp/my_ipc_endpoint
    ipc:///tmp/prices.ipc
25
----
26 27


28 29
WIRE FORMAT
-----------
30 31 32 33
IPC transport doesn't transfer messages across the network thus there is no need
for a wire format specification.


34 35 36 37 38 39
SEE ALSO
--------
linkzmq:zmq_inproc[7]
linkzmq:zmq_tcp[7]
linkzmq:zmq_udp[7]
linkzmq:zmq_pgm[7]
40 41


42 43 44
AUTHOR
------
Martin Sustrik <sustrik at 250bpm dot com>