v0.10.0
Quirrel v0.10 comes with two new options for jobs:
exclusive
Jobs
A job that's marked as exclusive
is guaranteed to be executed
on its own, with no other jobs from the same queue running
at the same time.
This can be useful when need to execute jobs one by one, for example when implementing an order queue.
override: true
Until now, when creating a job with an ID that already existed, the new job was discarded.
With override
, you can now mark the job to override potentially existing old ones.