本文整理汇总了PHP中Queue::rejectItems方法的典型用法代码示例。如果您正苦于以下问题:PHP Queue::rejectItems方法的具体用法?PHP Queue::rejectItems怎么用?PHP Queue::rejectItems使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Queue
的用法示例。
在下文中一共展示了Queue::rejectItems方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testRejectItemsSync
public function testRejectItemsSync()
{
$queue = new Queue($this->redis, 'test', [Base::OPT_SLAVES_SYNC_ENABLED => true, Base::OPT_SLAVES_SYNC_REQUIRED_COUNT => 5], $this->getTimeMock());
$processingQueue = sprintf('test-processing-%s[%d][%d]', gethostname(), getmypid(), self::TIME_MOCK);
$this->redis->lpush($processingQueue, [1, 5, 5, 3, 6, 7]);
$this->redis->hset('test-timeouts', $processingQueue, self::MICRO_TIME_MOCK);
try {
$queue->rejectItems([1, 5]);
} catch (\PhpRQ\Exception\NotEnoughSlavesSynced $e) {
}
// order of the items is preserved with Queue:rejectItems only if there is a reject on all the remaining
// items at once. Consecutive calls of this method causes the lost of the items order.
$this->assertSame(['5', '1'], $this->redis->lrange('test', 0, 5));
$this->assertSame(['7', '6', '3', '5'], $this->redis->lrange($processingQueue, 0, 5));
$this->assertSame([$processingQueue => (string) self::MICRO_TIME_MOCK], $this->redis->hgetall('test-timeouts'));
$this->assertKeys(['test', $processingQueue, 'test-timeouts']);
}
示例2: testRejectItems
public function testRejectItems()
{
$time = time();
$queue = new Queue($this->redis, 'test');
$processingQueue = sprintf('test-processing-%s[%d][%d]', gethostname(), getmypid(), $time);
$this->redis->lpush($processingQueue, [1, 5, 5, 3, 6, 7]);
$uTime = microtime(true);
$this->redis->hset('test-timeouts', $processingQueue, $uTime);
$queue->rejectItems([1, 5]);
$queue->rejectItems([5]);
$queue->rejectItems([9]);
// order of the items is preserved with Queue:rejectItems only if there is a reject on all the remaining
// items at once. Consecutive calls of this method causes the lost of the items order.
$this->assertSame(['5', '1', '5'], $this->redis->lrange('test', 0, 5));
$this->assertSame(['7', '6', '3'], $this->redis->lrange($processingQueue, 0, 5));
$this->assertSame([$processingQueue => (string) $uTime], $this->redis->hgetall('test-timeouts'));
$this->assertKeys(['test', $processingQueue, 'test-timeouts']);
$queue->rejectItems([3, 6, 7]);
// order of the items is preserved with Queue:rejectItems only if there is a reject on all the remaining
// items at once. Consecutive calls of this method causes the lost of the items order.
$this->assertSame(['5', '1', '5', '7', '6', '3'], $this->redis->lrange('test', 0, 10));
$this->assertKeys(['test']);
$this->redis->lpush($processingQueue, 1);
$uTime = microtime(true);
$this->redis->hset('test-timeouts', $processingQueue, $uTime);
$queue->rejectItems([1]);
// order of the items is preserved with Queue:rejectItems only if there is a reject on all the remaining
// items at once. Consecutive calls of this method causes the lost of the items order.
$this->assertSame(['5', '1', '5', '7', '6', '3', '1'], $this->redis->lrange('test', 0, 10));
$this->assertKeys(['test']);
}