Same filename and directory in other branches
  1. 8.9.x core/lib/Drupal/Core/Queue/ReliableQueueInterface.php
  2. 9 core/lib/Drupal/Core/Queue/ReliableQueueInterface.php

Namespace

Drupal\Core\Queue

File

core/lib/Drupal/Core/Queue/ReliableQueueInterface.php
View source
<?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 {

}

Interfaces

Namesort descending Description
ReliableQueueInterface Reliable queue interface.