public function Redis_Queue::releaseItem in Redis 7.2
Same name and namespace in other branches
- 7.3 lib/Redis/Queue.php \Redis_Queue::releaseItem()
Release an item that the worker could not process, so another worker can come in and process it before the timeout expires.
Parameters
$item:
Return value
boolean
Overrides DrupalQueueInterface::releaseItem
File
- lib/
Redis/ Queue.php, line 44
Class
Code
public function releaseItem($item) {
return $this->backend
->releaseItem($item);
}