Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0 / 0 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
|
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\Core\Queue\ReliableQueueInterface. | |
| */ | |
| namespace Drupal\Core\Queue; | |
| /** | |
| * Reliable queue interface. | |
| * | |
| * Classes implementing this interface preserve the order of messages and | |
| * guarantee that every item will be executed at least once. | |
| * | |
| * @ingroup queue | |
| */ | |
| interface ReliableQueueInterface extends QueueInterface { | |
| } |