commit | 2b3d24ad941b900c76e09c50f768d2b2d93e341c | [log] [tgz] |
---|---|---|
author | Michael Thomsen <mit@google.com> | Wed Jun 16 10:16:57 2021 +0200 |
committer | GitHub <noreply@github.com> | Wed Jun 16 10:16:57 2021 +0200 |
tree | dcbab66ee61c7820e9e2c16dbe7c158106df10e5 | |
parent | 21eac6d7e25d3b864fc09b078f20a61f3ed294be [diff] |
Update README.md (#60)
This package has been discontinued, and will no longer be maintained.
Helps with isolates and isolate communication in Dart. Requires the dart:isolate
library being available. Isolates are not available for Dart on the web.
The package contains individual libraries with different purposes.
The “ports.dart” sub-library contains functionality for creating SendPort
s and reacting to values sent to those ports.
The “isolate_runner.dart” sub-library introduces an IsolateRunner
class that gives easy access to the Isolate
functionality, and also gives a way to run new functions in the isolate repeatedly, instead of just on the initial spawn
call.
The “registry.dart” sub-library provides a way to create an object registry, and give access to it across different isolates.
The “load_balancer.dart” sub-library can manage multiple Runner
objects, including IsolateRunner
, and run functions on the currently least loaded runner.
Please file feature requests and bugs at the issue tracker.