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

Unified Diff: packages/isolate/README.md

Issue 2990843002: Removed fixed dependencies (Closed)
Patch Set: Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packages/isolate/LICENSE ('k') | packages/isolate/codereview.settings » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/isolate/README.md
diff --git a/packages/isolate/README.md b/packages/isolate/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..a242f11addb325e347e3d1beb355bcd050767a61
--- /dev/null
+++ b/packages/isolate/README.md
@@ -0,0 +1,35 @@
+[![Build Status](https://travis-ci.org/dart-lang/isolate.svg?branch=master)](https://travis-ci.org/dart-lang/isolate)
+[![Coverage Status](https://coveralls.io/repos/dart-lang/isolate/badge.svg?branch=master)](https://coveralls.io/r/dart-lang/isolate)
+
+Helps with isolates and isolate communication in Dart.
+
+The package contains individual libraries with different purposes.
+
+### Creating send ports and responding to messages.
+
+The "ports.dart" sub-library contains functionality
+for creating `SendPort`s 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][tracker].
+
+[tracker]: https://github.com/dart-lang/isolate/issues
« 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