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

Side by Side Diff: sdk/lib/async/future.dart

Issue 11794043: Remove Signal class and use Future/.whenComplete instead. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/async/async_sources.gypi ('k') | sdk/lib/async/future_impl.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « sdk/lib/async/async_sources.gypi ('k') | sdk/lib/async/future_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698