| OLD | NEW |
| 1 # isolate | 1 [](htt
ps://travis-ci.org/dart-lang/isolate) |
| 2 [](https://coveralls.io/r/dart-lang/isolate) |
| 2 | 3 |
| 3 The `isolate` package helps with isolates and isolate communication. | 4 Helps with isolates and isolate communication in Dart. |
| 4 | 5 |
| 5 The package contains individual libraries with different purposes. | 6 The package contains individual libraries with different purposes. |
| 6 | 7 |
| 7 ### Creating send ports and responding to messages. | 8 ### Creating send ports and responding to messages. |
| 8 | 9 |
| 9 The "ports.dart" sub-library contains functionality | 10 The "ports.dart" sub-library contains functionality |
| 10 for creating `SendPort`s and reacting to values sent to those ports. | 11 for creating `SendPort`s and reacting to values sent to those ports. |
| 11 | 12 |
| 12 ### Working with isolates and running functions in other isolates. | 13 ### Working with isolates and running functions in other isolates. |
| 13 | 14 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 25 | 26 |
| 26 The "load_balancer.dart" sub-library can manage multiple `Runner` objects, | 27 The "load_balancer.dart" sub-library can manage multiple `Runner` objects, |
| 27 including `IsolateRunner`, and run functions on the currently least loaded | 28 including `IsolateRunner`, and run functions on the currently least loaded |
| 28 runner. | 29 runner. |
| 29 | 30 |
| 30 ## Features and bugs | 31 ## Features and bugs |
| 31 | 32 |
| 32 Please file feature requests and bugs at the [issue tracker][tracker]. | 33 Please file feature requests and bugs at the [issue tracker][tracker]. |
| 33 | 34 |
| 34 [tracker]: https://github.com/dart-lang/isolate/issues | 35 [tracker]: https://github.com/dart-lang/isolate/issues |
| OLD | NEW |