Clone this repo:
  1. 81fc099 Update pubspec.yaml comment too. by Lasse Reichstein Holst Nielsen · 2 years, 11 months ago master
  2. d410fca Update version, CHANGELOG. by Lasse Reichstein Holst Nielsen · 2 years, 11 months ago
  3. f9e5630 Make `IsolateRunner.close` not keep the isolate alive if called more than once. by Lasse Reichstein Holst Nielsen · 2 years, 11 months ago
  4. 1477d6c Remove unnnecessary `show Future` from `dart:async` imports. by Lasse Reichstein Holst Nielsen · 2 years, 11 months ago
  5. 2b3d24a Update README.md (#60) by Michael Thomsen · 2 years, 11 months ago

Dart CI

DISCONTINUED

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.

Creating send ports and responding to messages.

The “ports.dart” sub-library contains functionality for creating SendPorts and reacting to values sent to those ports.

Working with isolates and running functions in other isolates.

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.

A central registry for values that can be used across isolates.

The “registry.dart” sub-library provides a way to create an object registry, and give access to it across different isolates.

Balancing load across several isolates.

The “load_balancer.dart” sub-library can manage multiple Runner objects, including IsolateRunner, and run functions on the currently least loaded runner.

Features and bugs

Please file feature requests and bugs at the issue tracker.