Shortcut for creating new sockets from the context. If the context is not persistent the persistent_id
parameter is ignored and the socket falls back to being non-persistent. The on_new_socket
is called only when a new underlying socket structure is created.
ZMQ::SOCKET_*
constant to specify socket type.
If persistent_id
is specified the socket will be persisted over multiple requests.
Callback function, which is executed when a new socket structure is created. This function does not get invoked if the underlying persistent connection is re-used. The callback takes ZMQSocket and persistent_id as two arguments.
Returns a ZMQSocket object on success. Throws ZMQSocketException on error.
Basic usage
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <?php /* Allocate a new context */ $context = new ZMQContext(); /* Create a new socket */ $socket = $context ->getSocket(ZMQ::SOCKET_REQ, 'my sock' ); /* Connect the socket */ /* Send a request */ $socket ->send( "Hello there" ); /* Receive back the response */ $message = $socket ->recv(); echo "Received message: {$message}\n" ; ?> |
Please login to continue.