async_queue 1.1.0 async_queue: ^1.1.0 copied to clipboard
This dart package ensure your pack of async tasks execute in order, one after the other.
1.1.0 #
- [breaking change] remove
beforeListener
andafterListener
. One listener will emitevent
with type. - add
close({bool forceStop = false})
close the queue so that no more job can be added. [forceStop] if true, all remain jobs will be canceled addJobThrow
Add new job in to the queue if the queue is closed, throw [ClosedQueueException]- add test cases
1.0.0 #
- (Normal Queue) Add multiple jobs into queue before firing
- (Auto Queue) Firing job as soon as any job is added to the queue
- (Both) Option to add queue listener that happens before or after execute every job