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 * Understanding [Future]s and [Stream]s is a prerequisite for | 9 * Understanding [Future]s and [Stream]s is a prerequisite for |
10 * writing just about any Dart program. | 10 * writing just about any Dart program. |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 * Learn how Dart handles the event queue and microtask queue, so you can write | 84 * Learn how Dart handles the event queue and microtask queue, so you can write |
85 * better asynchronous code with fewer surprises. | 85 * better asynchronous code with fewer surprises. |
86 * | 86 * |
87 * * [Asynchronous Unit Testing with Dart] | 87 * * [Asynchronous Unit Testing with Dart] |
88 * (https://www.dartlang.org/articles/dart-unit-tests/#asynchronous-tests): How | 88 * (https://www.dartlang.org/articles/dart-unit-tests/#asynchronous-tests): How |
89 * to test asynchronous code. | 89 * to test asynchronous code. |
90 */ | 90 */ |
91 library dart.async; | 91 library dart.async; |
92 | 92 |
93 import "dart:collection"; | 93 import "dart:collection"; |
94 import "dart:_internal" show deprecated, printToZone, printToConsole, | 94 import "dart:_internal" show printToZone, printToConsole, |
95 IterableElementError; | 95 IterableElementError; |
96 | 96 |
97 part 'async_error.dart'; | 97 part 'async_error.dart'; |
98 part 'broadcast_stream_controller.dart'; | 98 part 'broadcast_stream_controller.dart'; |
99 part 'deferred_load.dart'; | 99 part 'deferred_load.dart'; |
100 part 'future.dart'; | 100 part 'future.dart'; |
101 part 'future_impl.dart'; | 101 part 'future_impl.dart'; |
102 part 'schedule_microtask.dart'; | 102 part 'schedule_microtask.dart'; |
103 part 'stream.dart'; | 103 part 'stream.dart'; |
104 part 'stream_controller.dart'; | 104 part 'stream_controller.dart'; |
105 part 'stream_impl.dart'; | 105 part 'stream_impl.dart'; |
106 part 'stream_pipe.dart'; | 106 part 'stream_pipe.dart'; |
107 part 'stream_transformers.dart'; | 107 part 'stream_transformers.dart'; |
108 part 'timer.dart'; | 108 part 'timer.dart'; |
109 part 'zone.dart'; | 109 part 'zone.dart'; |
OLD | NEW |