ReliableQueueInterface.php 293 B

1234567891011121314
  1. <?php
  2. namespace Drupal\Core\Queue;
  3. /**
  4. * Reliable queue interface.
  5. *
  6. * Classes implementing this interface preserve the order of messages and
  7. * guarantee that every item will be executed at least once.
  8. *
  9. * @ingroup queue
  10. */
  11. interface ReliableQueueInterface extends QueueInterface {
  12. }