You are here

public function Queue::setBackendConfiguration in Advanced Queue 8

Sets the backend plugin configuration.

Parameters

array $configuration: The backend plugin configuration.

Return value

$this

Overrides QueueInterface::setBackendConfiguration

1 call to Queue::setBackendConfiguration()
Queue::set in src/Entity/Queue.php
Sets the value of a property.

File

src/Entity/Queue.php, line 167

Class

Queue
Defines the queue entity class.

Namespace

Drupal\advancedqueue\Entity

Code

public function setBackendConfiguration(array $configuration) {
  $this->backend_configuration = $configuration;
  $this->pluginCollection = NULL;
  return $this;
}