executor 2.2.1 executor: ^2.2.1 copied to clipboard
Executes async tasks with a configurable maximum concurrency and rate.
Changelog #
2.2.1 #
- Updated code to Dart 2.7.0 and latest lints.
- Fix: task completion updates the running count immediately.
2.2.0 #
- Removed
new
keyword, and updated to followpackage:pedantic
rules. Executor.join
will registerFuture.catchError
on task futures, preventing uncaught exceptions from blocking further execution.- Simplified execution and trigger mechanism.
2.1.2 #
- Using
package:stack_trace
to chain async stacktraces when task fails.
2.1.1 #
- Improved design on loop and scheduling, preserving caller stacktrace with full details.
2.1.0 #
- Removed
Timer
s to schedule tasks, using a simple loop instead. - Better distribution for rate-limited executions.
2.0.0 #
- Supporting Dart 2 only.
1.0.1 #
- Dart2 compatibility with
package:dart2_constant
.
1.0.0 #
Breaking changes
- Removed deprecated member
limit
. - Renamed
ExecutorTask
->AsyncTask
, return value toFutureOr
. - Renamed
Rate.limit
->Rate.maximum
.
New features
- Added
Executor.onChange
. Clients can use this to monitor the currentscheduledCount
and queue more tasks to ensureExecutor
is running on full capacity.
Housekeeping
- Added example.
- Added a few tests.
0.1.2 #
- Expose internal stats:
runningCount
,waitingCount
,scheduledCount
. - Enable sync-points with
join()
, which allows to track the completion of the currently running (and optionally the waiting) tasks.