Batch queue implementation used for non-progressive batches.
| Name | Description |
|---|---|
| BatchMemoryQueue::claimItem | Claim an item in the queue for processing. Overrides MemoryQueue::claimItem |
| BatchMemoryQueue::getAllItems | Retrieve all remaining items in the queue. |
| MemoryQueue::createItem | Add a queue item and store it directly to the queue. Overrides DrupalQueueInterface::createItem |
| MemoryQueue::createQueue | Create a queue. Overrides DrupalQueueInterface::createQueue |
| MemoryQueue::deleteItem | Delete a finished item from the queue. Overrides DrupalQueueInterface::deleteItem |
| MemoryQueue::deleteQueue | Delete a queue and every item in the queue. Overrides DrupalQueueInterface::deleteQueue |
| MemoryQueue::numberOfItems | Retrieve the number of items in the queue. Overrides DrupalQueueInterface::numberOfItems |
| MemoryQueue::releaseItem | Release an item that the worker could not process, so another worker can come in and process it before the timeout expires. Overrides DrupalQueueInterface::releaseItem |
| MemoryQueue::__construct | Start working with a queue. Overrides DrupalQueueInterface::__construct |
| Name | Description |
|---|---|
| MemoryQueue::$id_sequence | Counter for item ids. |
| MemoryQueue::$queue | The queue data. |
drupal/
<?php
class BatchMemoryQueue extends MemoryQueue {
public function claimItem($lease_time = 0) {
if (!empty($this->queue)) {
reset($this->queue);
return current($this->queue);
}
return FALSE;
}
/**
* Retrieve all remaining items in the queue.
*
* This is specific to Batch API and is not part of the DrupalQueueInterface,
*/
public function getAllItems() {
$result = array();
foreach ($this->queue as $item) {
$result[] = $item->data;
}
return $result;
}
}
?>