Chromium Code Reviews| 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 // part of dart.async; | 5 // part of dart.async; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * A [Future] is used to obtain a value sometime in the future. Receivers of a | 8 * A [Future] is used to obtain a value sometime in the future. Receivers of a |
| 9 * [Future] can obtain the value by passing a callback to [then]. For example: | 9 * [Future] can obtain the value by passing a callback to [then]. For example: |
| 10 * | 10 * |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 137 * completer.completeException(exception); | 137 * completer.completeException(exception); |
| 138 * | 138 * |
| 139 */ | 139 */ |
| 140 abstract class Completer<T> { | 140 abstract class Completer<T> { |
| 141 | 141 |
| 142 factory Completer() => new _CompleterImpl<T>(); | 142 factory Completer() => new _CompleterImpl<T>(); |
| 143 | 143 |
| 144 /** The future that will contain the value produced by this completer. */ | 144 /** The future that will contain the value produced by this completer. */ |
| 145 Future get future; | 145 Future get future; |
| 146 | 146 |
| 147 /** Supply a value for [future]. */ | 147 /** Supply a value for [future], or supply [:null:] if a value is omitted. */ |
|
floitsch
2013/01/08 12:24:40
dartdoc comments should be third person:
/// Comp
| |
| 148 void complete(T value); | 148 void complete([T value]); |
| 149 | 149 |
| 150 /** | 150 /** |
| 151 * Indicate in [future] that an exception occured while trying to produce its | 151 * Indicate in [future] that an exception occured while trying to produce its |
| 152 * value. The argument [exception] should not be [:null:]. A [stackTrace] | 152 * value. The argument [exception] should not be [:null:]. A [stackTrace] |
| 153 * object can be provided as well to give the user information about where | 153 * object can be provided as well to give the user information about where |
| 154 * the error occurred. If omitted, it will be [:null:]. | 154 * the error occurred. If omitted, it will be [:null:]. |
| 155 */ | 155 */ |
| 156 void completeError(Object exception, [Object stackTrace]); | 156 void completeError(Object exception, [Object stackTrace]); |
| 157 } | 157 } |
| 158 | 158 |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 177 */ | 177 */ |
| 178 static Future forEach(Iterable input, Future f(element)) { | 178 static Future forEach(Iterable input, Future f(element)) { |
| 179 var iterator = input.iterator; | 179 var iterator = input.iterator; |
| 180 Future nextElement(_) { | 180 Future nextElement(_) { |
| 181 if (!iterator.moveNext()) return new Future.immediate(null); | 181 if (!iterator.moveNext()) return new Future.immediate(null); |
| 182 return f(iterator.current).then(nextElement); | 182 return f(iterator.current).then(nextElement); |
| 183 } | 183 } |
| 184 return nextElement(null); | 184 return nextElement(null); |
| 185 } | 185 } |
| 186 } | 186 } |
| OLD | NEW |