class BatchMemory in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Queue/BatchMemory.php \Drupal\Core\Queue\BatchMemory
- 10 core/lib/Drupal/Core/Queue/BatchMemory.php \Drupal\Core\Queue\BatchMemory
Defines a batch queue handler used by the Batch API for non-progressive batches.
This implementation:
- Ensures FIFO ordering.
- Allows an item to be repeatedly claimed until it is actually deleted (no notion of lease time or 'expire' date), to allow multipass operations.
Hierarchy
- class \Drupal\Core\Queue\Memory implements QueueInterface
- class \Drupal\Core\Queue\BatchMemory
Expanded class hierarchy of BatchMemory
Related topics
File
- core/
lib/ Drupal/ Core/ Queue/ BatchMemory.php, line 16
Namespace
Drupal\Core\QueueView source
class BatchMemory extends Memory {
/**
* 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.
*/
public function claimItem($lease_time = 0) {
if (!empty($this->queue)) {
reset($this->queue);
return current($this->queue);
}
return FALSE;
}
/**
* Retrieves all remaining items in the queue.
*
* This is specific to Batch API and is not part of the
* \Drupal\Core\Queue\QueueInterface.
*
* @return array
* An array of queue items.
*/
public function getAllItems() {
$result = [];
foreach ($this->queue as $item) {
$result[] = $item->data;
}
return $result;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BatchMemory:: |
public | function |
Overrides \Drupal\Core\Queue\Memory::claimItem(). Overrides Memory:: |
|
BatchMemory:: |
public | function | Retrieves all remaining items in the queue. | |
Memory:: |
protected | property | Counter for item ids. | |
Memory:: |
protected | property | The queue data. | |
Memory:: |
public | function |
Adds a queue item and store it directly to the queue. Overrides QueueInterface:: |
|
Memory:: |
public | function |
Creates a queue. Overrides QueueInterface:: |
|
Memory:: |
public | function |
Deletes a finished item from the queue. Overrides QueueInterface:: |
|
Memory:: |
public | function |
Deletes a queue and every item in the queue. Overrides QueueInterface:: |
|
Memory:: |
public | function |
Retrieves the number of items in the queue. Overrides QueueInterface:: |
|
Memory:: |
public | function |
Releases an item that the worker could not process. Overrides QueueInterface:: |
|
Memory:: |
public | function | Constructs a Memory object. |