
| Current Path : /var/www/html/rocksensor/web/core/lib/Drupal/Core/Queue/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor/web/core/lib/Drupal/Core/Queue/QueueFactoryInterface.php |
<?php
namespace Drupal\Core\Queue;
/**
* An interface defining queue factory classes.
*/
interface QueueFactoryInterface {
/**
* Constructs a new queue object for a given name.
*
* @param string $name
* The name of the queue.
*
* @return \Drupal\Core\Queue\QueueInterface
* The queue object.
*/
public function get($name);
}