class BatchQueue in Drupal 7
Defines a batch queue.
Stale items from failed batches are cleaned from the {queue} table on cron using the 'created' date.
Hierarchy
- class \SystemQueue implements DrupalReliableQueueInterface
- class \BatchQueue
Expanded class hierarchy of BatchQueue
1 string reference to 'BatchQueue'
- _batch_populate_queue in includes/
form.inc - Populates a job queue with the operations of a batch set.
File
- includes/
batch.queue.inc, line 19 - Queue handlers used by the Batch API.
View source
class BatchQueue extends SystemQueue {
/**
* Overrides SystemQueue::claimItem().
*
* Unlike SystemQueue::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) {
$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;
}
/**
* Retrieves all remaining items in the queue.
*
* This is specific to Batch API and is not part of the DrupalQueueInterface.
*/
public function getAllItems() {
$result = array();
$items = db_query('SELECT data FROM {queue} q WHERE name = :name ORDER BY item_id ASC', array(
':name' => $this->name,
))
->fetchAll();
foreach ($items as $item) {
$result[] = unserialize($item->data);
}
return $result;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BatchQueue:: |
public | function |
Overrides SystemQueue::claimItem(). Overrides SystemQueue:: |
|
BatchQueue:: |
public | function | Retrieves all remaining items in the queue. | |
SystemQueue:: |
protected | property | The name of the queue this instance is working with. | |
SystemQueue:: |
public | function |
Add a queue item and store it directly to the queue. Overrides DrupalQueueInterface:: |
|
SystemQueue:: |
public | function |
Create a queue. Overrides DrupalQueueInterface:: |
|
SystemQueue:: |
public | function |
Delete a finished item from the queue. Overrides DrupalQueueInterface:: |
|
SystemQueue:: |
public | function |
Delete a queue and every item in the queue. Overrides DrupalQueueInterface:: |
|
SystemQueue:: |
public | function |
Retrieve the number of items in the queue. Overrides DrupalQueueInterface:: |
|
SystemQueue:: |
public | function |
Release an item that the worker could not process, so another
worker can come in and process it before the timeout expires. Overrides DrupalQueueInterface:: |
|
SystemQueue:: |
public | function |