本文整理汇总了PHP中ZMQSocket::getEndpoints方法的典型用法代码示例。如果您正苦于以下问题:PHP ZMQSocket::getEndpoints方法的具体用法?PHP ZMQSocket::getEndpoints怎么用?PHP ZMQSocket::getEndpoints使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ZMQSocket
的用法示例。
在下文中一共展示了ZMQSocket::getEndpoints方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: send
/**
* @param string|array $message
* @param int $mode
*/
public function send($message, $mode = 0)
{
if (false === $this->connected) {
$connectedTo = $this->socket->getEndpoints();
if (!in_array($this->dsn, $connectedTo)) {
$this->socket->connect($this->dsn);
}
$this->connected = true;
}
$this->socket->send($message, $mode);
}
示例2: connection
/**
* @param $type
* @throws MQException
* @return \ZMQSocket
*/
protected function connection($type)
{
/* Create a socket */
$socket = new \ZMQSocket(new \ZMQContext(), $type);
/* Get list of connected endpoints */
$endpoints = $socket->getEndpoints();
/* Check if the socket is connected */
if (!in_array($this->dns, $endpoints['connect'])) {
$socket->connect($this->dns);
//$socket->bind($this->dns);
} else {
throw new MQException("Already connected to {$this->dns}");
}
return $socket;
}