| OLD | NEW |
| (Empty) | |
| 1 [](htt
ps://travis-ci.org/dart-lang/isolate) |
| 2 [](https://coveralls.io/r/dart-lang/isolate) |
| 3 |
| 4 Helps with isolates and isolate communication in Dart. |
| 5 |
| 6 The package contains individual libraries with different purposes. |
| 7 |
| 8 ### Creating send ports and responding to messages. |
| 9 |
| 10 The "ports.dart" sub-library contains functionality |
| 11 for creating `SendPort`s and reacting to values sent to those ports. |
| 12 |
| 13 ### Working with isolates and running functions in other isolates. |
| 14 |
| 15 The "isolate_runner.dart" sub-library introduces an `IsolateRunner` class |
| 16 that gives easy access to the `Isolate` functionality, and also |
| 17 gives a way to run new functions in the isolate repeatedly, instead of |
| 18 just on the initial `spawn` call. |
| 19 |
| 20 ### A central registry for values that can be used across isolates. |
| 21 |
| 22 The "registry.dart" sub-library provides a way to create an |
| 23 object registry, and give access to it across different isolates. |
| 24 |
| 25 ### Balancing load across several isolates. |
| 26 |
| 27 The "load_balancer.dart" sub-library can manage multiple `Runner` objects, |
| 28 including `IsolateRunner`, and run functions on the currently least loaded |
| 29 runner. |
| 30 |
| 31 ## Features and bugs |
| 32 |
| 33 Please file feature requests and bugs at the [issue tracker][tracker]. |
| 34 |
| 35 [tracker]: https://github.com/dart-lang/isolate/issues |
| OLD | NEW |