public function BatchMemory::claimItem

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

Unlike Drupal\Core\Queue\Memory::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 Memory::claimItem

File

drupal/core/lib/Drupal/Core/Queue/BatchMemory.php, line 28
Definition of Drupal\Core\Queue\BatchMemory.

Class

BatchMemory
Defines a batch queue handler used by the Batch API for non-progressive batches.

Namespace

Drupal\Core\Queue

Code

public function claimItem($lease_time = 0) {
  if (!empty($this->queue)) {
    reset($this->queue);
    return current($this->queue);
  }
  return FALSE;
}