Question

I am using resque for background tasks.
How can i show an animated spinner while a backgound task is processing?
I found a similar question, but it didn't help me

Was it helpful?

Solution

When I've done this before, I've always set a flag on the object itself in the database once it enters Resque, then as soon as the job is done in the Resque task, updated that flag again. You can use AJAX to monitor the status of that flag and manipulate the page / spinner accordingly.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top