You are here

public function Queue::enqueueJob in Advanced Queue 8

Enqueues the given job.

The job will be modified with the assigned queue ID, job ID, and relevant timestamps.

Parameters

\Drupal\advancedqueue\Job $job: The job.

int $delay: The time, in seconds, after which the job will become available to consumers. Defaults to 0, indicating no delay.

Overrides QueueInterface::enqueueJob

File

src/Entity/Queue.php, line 122

Class

Queue
Defines the queue entity class.

Namespace

Drupal\advancedqueue\Entity

Code

public function enqueueJob(Job $job, $delay = 0) {
  return $this
    ->getBackend()
    ->enqueueJob($job, $delay);
}