You are here

public function Redis_Queue::releaseItem in Redis 7.2

Same name and namespace in other branches
  1. 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

Redis_Queue

Code

public function releaseItem($item) {
  return $this->backend
    ->releaseItem($item);
}