Reputation: 5
I am going to use Laravel 4 queues and integrate them with Iron.io All of that is pretty straight forward, and I dont think I am going to have problems with that.
Thing that interests me is what is the best way to get status once task is completed?
Iron.io is going to do return call to my server to trigger job, and once that job completes I need to notify user about that...
How could I store this responses, and still be aware of job its related to, because there will be number of different job types?
I would like to hear how did you implement this.
Thanks
Upvotes: 0
Views: 373
Reputation: 12293
As Joseph pointed out in the comments, you'll need to:
The popular methods are:
Upvotes: 0