blob: 6c3c2139cc4607da32ca289f6bc1803d46890bff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
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 {
}
|