interface DrupalReliableQueueInterface
Reliable queue interface.
Classes implementing this interface preserve the order of messages and guarantee that every item will be executed at least once.
Hierarchy
- interface \DrupalQueueInterface
- interface \DrupalReliableQueueInterface implements \DrupalQueueInterface
Expanded class hierarchy of DrupalReliableQueueInterface
All classes that implement DrupalReliableQueueInterface
Related topics
File
-
modules/
system/ system.queue.inc, line 192
View source
interface DrupalReliableQueueInterface extends DrupalQueueInterface {
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
DrupalQueueInterface::claimItem | public | function | Claim an item in the queue for processing. | 2 |
DrupalQueueInterface::createItem | public | function | Add a queue item and store it directly to the queue. | 2 |
DrupalQueueInterface::createQueue | public | function | Create a queue. | 2 |
DrupalQueueInterface::deleteItem | public | function | Delete a finished item from the queue. | 2 |
DrupalQueueInterface::deleteQueue | public | function | Delete a queue and every item in the queue. | 2 |
DrupalQueueInterface::numberOfItems | public | function | Retrieve the number of items in the queue. | 2 |
DrupalQueueInterface::releaseItem | public | function | Release an item that the worker could not process, so another worker can come in and process it before the timeout expires. |
2 |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.