| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 This directory contains two experimental ideas. They both introduce an |
| 6 abstraction layer on top of isolates and futures to help make the code more |
| 7 oblivious of the underlying isolate architecture. |
| 8 |
| 9 promise.dart - contains an old example that was based on Promise<T> (an |
| 10 earlier prototype of Future<T>). Tests based on this code under |
| 11 'sample/tests/proxy' serve as an illustration of how promise |
| 12 pipelining could look like. |
| 13 |
| 14 proxy.dart - contains an RPC layer that sits on top of isolates and futures. |
| 15 It provides base classes to define client and server rpc stubs. |
| 16 The test 'sample/tests/proxy/MintMakerRpcTest' illustrates how |
| 17 this can be used. |
| OLD | NEW |