function SystemQueue::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

modules/system/system.queue.inc, line 261

Class

SystemQueue
Default queue implementation.

Code

public function releaseItem($item) {
  $update = db_update('queue')->fields(array(
    'expire' => 0,
  ))
    ->condition('item_id', $item->item_id);
  return $update->execute();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.