0
lgarcia created
How is possible to get a list of current running jobs and the percent of completion? Thanks
2 Answer(s)
-
0
hi there's not a feature to get running background jobs. but if you use Abp.HangFire then it has more feature
<a class="postlink" href="https://aspnetboilerplate.com/Pages/Documents/Hangfire-Integration">https://aspnetboilerplate.com/Pages/Doc ... ntegration</a>
-
0
@lgarcia it is not implemented by default. You can create an interceptor for BackgroundJobs, then insert a record to DB (in a custom table you will create) before running Execute method and you can update this record when Execute method finishes the job.
Then you can use your custom table to query such information.