You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using already the concurrency settings to ensure that only one job of a certain type is running.
What I'd need is to check if the job is already in the queue to show in the UI that there is no need to launch it again, but just wait for the job to finish
The text was updated successfully, but these errors were encountered:
Hi,
JobBuilder.singleInstance() have 3 parameters. The latest one includeExecutingJob If set to true will also count the job that is current executing.
I'm using that already, and it's perfect.
However, in my use case I have a list of items that the user can download (serial, not parallel).
Once he clicks on an item I'm adding it to the queue so that it will be downloaded eventually.
Now in that UI I just wanna show that it is in the queue... so re-adding it is not a real option
I'm using already the concurrency settings to ensure that only one job of a certain type is running.
What I'd need is to check if the job is already in the queue to show in the UI that there is no need to launch it again, but just wait for the job to finish
The text was updated successfully, but these errors were encountered: