public function SystemQueue::releaseItem

public SystemQueue::releaseItem($item)

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
Queue functionality.

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();
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!system!system.queue.inc/function/SystemQueue::releaseItem/7.x