You are here

ReliableQueueInterface.php in Drupal 9

Same filename and directory in other branches
  1. 8 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.