Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Side by Side Diff: packages/isolate/README.md

Issue 2990843002: Removed fixed dependencies (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « packages/isolate/LICENSE ('k') | packages/isolate/codereview.settings » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 [![Build Status](https://travis-ci.org/dart-lang/isolate.svg?branch=master)](htt ps://travis-ci.org/dart-lang/isolate)
2 [![Coverage Status](https://coveralls.io/repos/dart-lang/isolate/badge.svg?branc h=master)](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
OLDNEW
« no previous file with comments | « packages/isolate/LICENSE ('k') | packages/isolate/codereview.settings » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698