Remove job jobs from the queue without marking them as processed.
\Drupal\tmgmt\JobInterface $job: Job to be marked as processed.
public function markJobAsProcessed(JobInterface $job) {
if ($this
->isJobInQueue($job)) {
$this->processed++;
}
unset($this->queue[array_search($job
->id(), $this->queue)]);
}