interface ReliableQueueInterface in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Queue/ReliableQueueInterface.php \Drupal\Core\Queue\ReliableQueueInterface
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 \Drupal\Core\Queue\QueueInterface
- interface \Drupal\Core\Queue\ReliableQueueInterface
Expanded class hierarchy of ReliableQueueInterface
All classes that implement ReliableQueueInterface
Related topics
File
- core/
lib/ Drupal/ Core/ Queue/ ReliableQueueInterface.php, line 13
Namespace
Drupal\Core\QueueView source
interface ReliableQueueInterface extends QueueInterface {
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
QueueInterface:: |
public | function | Claims an item in the queue for processing. | 2 |
QueueInterface:: |
public | function | Adds a queue item and store it directly to the queue. | 2 |
QueueInterface:: |
public | function | Creates a queue. | 2 |
QueueInterface:: |
public | function | Deletes a finished item from the queue. | 2 |
QueueInterface:: |
public | function | Deletes a queue and every item in the queue. | 2 |
QueueInterface:: |
public | function | Retrieves the number of items in the queue. | 2 |
QueueInterface:: |
public | function | Releases an item that the worker could not process. | 2 |