本文整理汇总了PHP中Codec::putResultDecode方法的典型用法代码示例。如果您正苦于以下问题:PHP Codec::putResultDecode方法的具体用法?PHP Codec::putResultDecode怎么用?PHP Codec::putResultDecode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Codec
的用法示例。
在下文中一共展示了Codec::putResultDecode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: put
public function put($topic, $msg, $async)
{
if (strlen($msg) > Codec::MAX_MSG_LENGTH) {
throw new \Exception('Can not put message which length > ' . Codec::MAX_MSG_LENGTH);
}
list($host, $port, $part) = $this->selectPart($topic);
if (!isset($this->sockets[$host . ':' . $port])) {
$this->sockets[$host . ':' . $port] = new Socket($host, $port);
try {
$this->sockets[$host . ':' . $port]->connect();
} catch (\Exception $e) {
echo $e->getMessage();
}
if (!$this->sockets[$host . ':' . $port]->active) {
$this->inactive = $host . '-' . $port;
$this->removeInactive($topic);
if (sizeof($this->writeList[$topic]) > 0) {
$this->put($topic, $msg);
} else {
throw new \Exception('all brokers seems down');
}
}
}
$socket = $this->sockets[$host . ':' . $port];
$data = Codec::putEncode($topic, $part, $msg);
$reTry = 0;
$success = false;
while (1) {
$writeSuccess = $socket->write($data);
if ($writeSuccess && $async) {
$success = true;
$result = array('id' => -1, 'code' => 0, 'offset' => -1);
break;
}
$buf = $socket->read0();
list($success, $result, $errorMsg) = Codec::putResultDecode($buf);
if ($errorMsg) {
throw new MetaQ_Exception($errorMsg);
}
if ($success || $reTry >= self::RETRY) {
break;
}
usleep(500);
$reTry++;
}
if (!$success) {
throw new MetaQ_Exception('put command not succeed to ' . $host . ':' . $port);
$this->inactive = $host . '-' . $port;
$this->removeInactive($topic);
if (sizeof($this->writeList) > 0) {
$this->put($topic, $msg);
} else {
throw new \Exception('all brokers seems down');
}
}
return $result;
}