Remove job jobs from the queue without marking them as processed.
array $job_ids: Job jobs to be removed.
public function removeJobs(array $job_ids) { $this->queue = array_diff($this->queue, $job_ids); }