async_request_manager
A Dart utility for managing concurrent async operations with deduplication, cancellation, and parallel-execution strategies.
What this package is like to depend on
Last release 1 months ago
24 Jul 2026
Too new to tell
only 1 dated releases
Nearly every release is documented
notes for 1 of 1 stable releases
Nothing withdrawn
no release was ever pulled
1 months old
1 releases · first in 2026
1 release in the last 12 months
see the full history below
Release timeline
1 releases · Jul 2026 to Jul 2026Releases
latest 1-
1.0.024 Jul 2026Release notes
Open source →- Converted project structure from Flutter plugin to a standard Dart package.
- Added
CancelInfo.cancelledAtcomputed getter (startedAt + elapsed). - Added
AsyncRequestManager.hasRunningOperationsconvenience getter. - Fixed
dispose()to set_disposed = truebefore callingcancelAll(), closing a race window whereexecute()could slip in during async teardown. Added idempotency guard so a seconddispose()call is a no-op.