public function Database::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 BackendInterface::enqueueJob
File
- src/
Plugin/ AdvancedQueue/ Backend/ Database.php, line 115  
Class
- Database
 - Provides the database queue backend.
 
Namespace
Drupal\advancedqueue\Plugin\AdvancedQueue\BackendCode
public function enqueueJob(Job $job, $delay = 0) {
  $this
    ->enqueueJobs([
    $job,
  ], $delay);
}