public function Batch::claimItem

Overrides Drupal\Core\Queue\System::claimItem().

Unlike Drupal\Core\Queue\System::claimItem(), this method provides a default lease time of 0 (no expiration) instead of 30. This allows the item to be claimed repeatedly until it is deleted.

Overrides System::claimItem

File

drupal/core/lib/Drupal/Core/Queue/Batch.php, line 30
Definition of Drupal\Core\Queue\Batch.

Class

Batch
Defines a batch queue handler used by the Batch API.

Namespace

Drupal\Core\Queue

Code

public function claimItem($lease_time = 0) {
  $item = db_query_range('SELECT data, item_id FROM {queue} q WHERE name = :name ORDER BY item_id ASC', 0, 1, array(
    ':name' => $this->name,
  ))
    ->fetchObject();
  if ($item) {
    $item->data = unserialize($item->data);
    return $item;
  }
  return FALSE;
}