Open rahmanramsi opened 1 year ago
use InteractsWithQueue
use this trait
Closing due to inactivity. If you feel your issue is still relevant please open a new one with a link to a repository containing a minimal reproducible example.
For anyone that sees this in the future, you want to include the trait above and also do this instead:
public function asJob(JobDecorator $job): void
{
$job->release(30);
}
This hints that there might be more to this than I thought. I will take a look at this at a later point.
In default laravel job, you can access use
$this->release(60)
method to release the job back into queue. How to do this in this package?