You are here

ReliableQueueRedisFactory.php in Redis 8

Namespace

Drupal\redis\Queue

File

src/Queue/ReliableQueueRedisFactory.php
View source
<?php

namespace Drupal\redis\Queue;

use Drupal\redis\ClientFactory;

/**
 * Defines the queue factory for the Redis backend.
 */
class ReliableQueueRedisFactory extends QueueRedisFactory {

  /**
   * Queue implementation class namespace prefix.
   */
  const CLASS_NAMESPACE = ClientFactory::REDIS_IMPL_RELIABLE_QUEUE;

}

Classes

Namesort descending Description
ReliableQueueRedisFactory Defines the queue factory for the Redis backend.