I have an app wherein from laravel 4.2 I am slowly transitioning it to node.
Now I have this Queue::pushRaw(payload, tube)
the job is in node and this code is working perfectly fine.
However I recently have a problem wherein I need those jobs to have a delay.
I use Queue::later
before (when my jobs is still in Laravel), but how can I do it with Queue::pushRaw
?? I can't use Queue::later
anymore since I'm passing a raw payload instead of a job.
Base on the documents I can pass options
https://laravel.com/api/4.2/Illuminate/Queue/QueueInterface.html
However, I have no idea what to pass on options
to have a delay.