You are here

public function QueueInterface::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.

1 method overrides QueueInterface::enqueueJob()
Queue::enqueueJob in src/Entity/Queue.php
Enqueues the given job.

File

src/Entity/QueueInterface.php, line 36

Class

QueueInterface
Defines the interface for queues.

Namespace

Drupal\advancedqueue\Entity

Code

public function enqueueJob(Job $job, $delay = 0);