Is Laravel job queue is Asynchronous?
I want to execute a list of processes in Synchronous manner
Say i have three processes in the job queue
- Process-1
- Process-2
- Process-3
I want to execute process-2 only after successful execution of process-1 or after 3 failed attempts for process-1 so on ...
If the queues are Synchronous this isn't a problem, am i right?
If the queues are Asynchronous, Then what is the best practice to do this?