async_task 1.0.4 async_task: ^1.0.4 copied to clipboard
Asynchronous tasks and parallel executors (similar to thread pools) for all Dart platforms (transparently), without having to deal with `Isolate` complexity.
1.0.4 #
AsyncTask
:- Allow multiple
SharedData
: Optional methodsharedData
now returns aMap<String,SharedData>
.
- Allow multiple
1.0.3 #
AsyncExecutor
:- Fix
close
operation while tasks are being executed.
- Fix
1.0.2 #
- Added
SharedData
, to optimize data sharing between tasks and threads/isolates. AsyncExecutor
: addedclose
to stop and finalize an executor.- Added collections extensions:
ListExtension
,MapExtension
,SetExtension
,IterableExtension
.
1.0.1 #
- Fix
pubspec.yaml
description length. - Improve
README.md
description.
1.0.0 #
- Implemented
AsyncTask
withstatus
,result
andexecutionTime
. AsyncExecutor
with implementations based ondart:isolate
anddart:async
.- Initial version.