interface InstantQueueRunnerInterface
Same name and namespace in other branches
- 11.x core/lib/Drupal/Core/Queue/InstantQueueRunnerInterface.php \Drupal\Core\Queue\InstantQueueRunnerInterface
Provides an interface for adding queues to be run instantly.
Hierarchy
- interface \Drupal\Core\Queue\InstantQueueRunnerInterface
Expanded class hierarchy of InstantQueueRunnerInterface
All classes that implement InstantQueueRunnerInterface
1 file declares its use of InstantQueueRunnerInterface
- InstantQueueRunnerTest.php in core/
tests/ Drupal/ KernelTests/ Core/ Queue/ InstantQueueRunnerTest.php
File
-
core/
lib/ Drupal/ Core/ Queue/ InstantQueueRunnerInterface.php, line 10
Namespace
Drupal\Core\QueueView source
interface InstantQueueRunnerInterface {
/**
* Registers a queue to be run by the instant queue runner.
*
* @param string $queue_name
* The queue name.
*/
public function registerQueue(string $queue_name) : void;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.