ZMQContext::getSocket
(PECL zmq >= 0.5.0)
ZMQContext::getSocket — Create a new socket
설명
public ZMQSocket ZMQContext::getSocket
(
integer $type
[,
string $persistent_id
= null
[,
callback $on_new_socket
= null
]] )
인수
-
type
-
ZMQ::SOCKET_*
constant to specify socket type.
-
persistent_id
-
If persistent_id
is specified the socket will be persisted over multiple requests.
-
on_new_socket
-
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.
예제
Example #1 A ZMQContext() example
<?php
/* Allocate a new context */
$context = new ZMQContext();
/* Create a new socket */
$socket = $context->getSocket(ZMQ::SOCKET_REQ, 'my sock');
/* Connect the socket */
$socket->connect("tcp://example.com:1234");
/* Send a request */
$socket->send("Hello there");
/* Receive back the response */
$message = $socket->recv();
echo "Received message: {$message}\n";
?>
반환값
Returns a ZMQSocket object on success. Throws ZMQSocketException on error.