ReliableQueueInterface.php

Definition of Drupal\Core\Queue\ReliableQueueInterface.

Namespace

Drupal\Core\Queue

File

drupal/core/lib/Drupal/Core/Queue/ReliableQueueInterface.php
View source
<?php

/**
 * @file
 * Definition of 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.
 */
interface ReliableQueueInterface extends QueueInterface {

}

Interfaces

Namesort descending Description
ReliableQueueInterface Reliable queue interface.