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

Namespace

Drupal\Core\Queue

File

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

namespace Drupal\Core\Queue;

use Drupal\Component\Plugin\PluginManagerInterface;

/**
 * Provides an interface for a queue worker manager.
 */
interface QueueWorkerManagerInterface extends PluginManagerInterface {

  /**
   * The default time duration in seconds spent calling a queue worker.
   *
   * @var int
   */
  public const DEFAULT_QUEUE_CRON_TIME = 15;

}

Interfaces

Namesort descending Description
QueueWorkerManagerInterface Provides an interface for a queue worker manager.