mirror of
https://github.com/hibiken/asynq.git
synced 2026-04-26 07:25:56 +03:00
[GH-ISSUE #851] Question : how to wait for results after enqueue #2440
Labels
No labels
CLI
bug
designing
documentation
duplicate
enhancement
good first issue
good first issue
help wanted
idea
invalid
investigate
needs-more-info
performance
pr-welcome
pull-request
question
wontfix
work in progress
work in progress
work-around-available
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/asynq#2440
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Zambiorix on GitHub (Mar 27, 2024).
Original GitHub issue: https://github.com/hibiken/asynq/issues/851
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!
@linhbkhn95 commented on GitHub (Mar 28, 2024):
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
@yimingsir commented on GitHub (Jun 3, 2024):
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.