| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * Support for asynchronous programming, | 6 * Support for asynchronous programming, |
| 7 * with classes such as Future and Stream. | 7 * with classes such as Future and Stream. |
| 8 * | 8 * |
| 9 * For an introduction to asynchronous programming in Dart, see the | 9 * For an introduction to asynchronous programming in Dart, see the |
| 10 * [dart:async section of the language tour] | 10 * [dart:async section of the language tour] |
| 11 * (https://www.dartlang.org/docs/dart-up-and-running/contents/ch03.html#ch03-as
ynchronous-programming). | 11 * (https://www.dartlang.org/docs/dart-up-and-running/contents/ch03.html#ch03-as
ynchronous-programming). |
| 12 * | 12 * |
| 13 * ## Other Resources | 13 * ## Other resources |
| 14 * | 14 * |
| 15 * * [Using Future Based APIs] | 15 * * [Using Future Based APIs] |
| 16 * (https://www.dartlang.org/articles/using-future-based-apis/): A first look at | 16 * (https://www.dartlang.org/articles/using-future-based-apis/): A first look at |
| 17 * Futures and how to use them to write asynchronous Dart code. | 17 * Futures and how to use them to write asynchronous Dart code. |
| 18 * | 18 * |
| 19 * * [Futures and Error Handling] | 19 * * [Futures and Error Handling] |
| 20 * (https://www.dartlang.org/articles/futures-and-error-handling/): Everything | 20 * (https://www.dartlang.org/articles/futures-and-error-handling/): Everything |
| 21 * you wanted to know about handling errors and exceptions when working with | 21 * you wanted to know about handling errors and exceptions when working with |
| 22 * Futures (but were afraid to ask). | 22 * Futures (but were afraid to ask). |
| 23 * | 23 * |
| (...skipping 16 matching lines...) Expand all Loading... |
| 40 part 'future.dart'; | 40 part 'future.dart'; |
| 41 part 'future_impl.dart'; | 41 part 'future_impl.dart'; |
| 42 part 'schedule_microtask.dart'; | 42 part 'schedule_microtask.dart'; |
| 43 part 'stream.dart'; | 43 part 'stream.dart'; |
| 44 part 'stream_controller.dart'; | 44 part 'stream_controller.dart'; |
| 45 part 'stream_impl.dart'; | 45 part 'stream_impl.dart'; |
| 46 part 'stream_pipe.dart'; | 46 part 'stream_pipe.dart'; |
| 47 part 'stream_transformers.dart'; | 47 part 'stream_transformers.dart'; |
| 48 part 'timer.dart'; | 48 part 'timer.dart'; |
| 49 part 'zone.dart'; | 49 part 'zone.dart'; |
| OLD | NEW |