public function System::__construct

Constructs a System object.

Parameters

string $name: An arbitrary string. The name of the queue to work with.

File

drupal/core/lib/Drupal/Core/Queue/System.php, line 27
Definition of Drupal\Core\Queue\System.

Class

System
Default queue implementation.

Namespace

Drupal\Core\Queue

Code

public function __construct($name) {
  $this->name = $name;
}