asynq
asynq copied to clipboard
Question : how to wait for results after enqueue
I'm trying to decouple my frontend REST api from my backend with Asynq. How do I actually make my client wait for the result of a task after I enqueue it?
Thanks!
I think https://github.com/hibiken/asynqmon the thing that you need right now. I also give you know how to client interact with asynq api
You can add job status field. In asynq job execution, update job status field to doing/done. Add a api to get job status,at frontend you can get job status by the api.