当前位置: 首页>>代码示例>>PHP>>正文


PHP Client::brpop方法代码示例

本文整理汇总了PHP中Predis\Client::brpop方法的典型用法代码示例。如果您正苦于以下问题:PHP Client::brpop方法的具体用法?PHP Client::brpop怎么用?PHP Client::brpop使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Predis\Client的用法示例。


在下文中一共展示了Client::brpop方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: get

 /**
  * @param string $queueName
  * @param null $timeout
  * @return mixed|null
  */
 public function get($queueName, $timeout = null)
 {
     $result = $this->predis->brpop($queueName, $timeout);
     if (empty($result)) {
         return null;
     } else {
         return unserialize($result[1]);
     }
 }
开发者ID:acassan,项目名称:worker-bundle,代码行数:14,代码来源:PRedis.php

示例2: get

 /**
  * @param string $queueName
  * @param null   $timeout
  * @return mixed|null
  */
 public function get($queueName, $timeout = null)
 {
     /** @noinspection PhpUndefinedMethodInspection */
     $result = $this->predis->brpop($queueName, $timeout);
     if (empty($result)) {
         return null;
     } else {
         return unserialize($result[1]);
     }
 }
开发者ID:riverline,项目名称:worker-bundle,代码行数:15,代码来源:PRedis.php

示例3: waitAndTake

 /**
  * Wait for a message in the queue and return the message for processing
  * (without safety queue)
  *
  * @param int $timeout
  * @return \Flowpack\JobQueue\Common\Queue\Message The received message or NULL if a timeout occured
  */
 public function waitAndTake($timeout = NULL)
 {
     if ($timeout === NULL) {
         $timeout = $this->defaultTimeout;
     }
     $keyAndValue = $this->client->brpop("queue:{$this->name}:messages", $timeout);
     $value = $keyAndValue[1];
     if (is_string($value)) {
         $message = $this->decodeMessage($value);
         if ($message->getIdentifier() !== NULL) {
             $this->client->srem("queue:{$this->name}:ids", $message->getIdentifier());
         }
         // The message is marked as done
         $message->setState(\Flowpack\JobQueue\Common\Queue\Message::STATE_DONE);
         return $message;
     } else {
         return NULL;
     }
 }
开发者ID:admaykin,项目名称:Admaykin.Jobqueue.Redis,代码行数:26,代码来源:RedisQueue.php

示例4: brpop

 public function brpop($channel, $timeout)
 {
     return $this->client->brpop($channel, $timeout);
 }
开发者ID:yoye,项目名称:redis-broker,代码行数:4,代码来源:PredisAdapter.php


注:本文中的Predis\Client::brpop方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。