Disque\Queue\Queue::processing PHP Method

processing() public method

Marks that a Job is still being processed
public processing ( Disque\Queue\JobInterface $job ) : integer
$job Disque\Queue\JobInterface Job
return integer Number of seconds that the job visibility was postponed
    public function processing(JobInterface $job)
    {
        $this->checkConnected();
        return $this->client->working($job->getId());
    }