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 * An object representing a delayed computation. | 8 * An object representing a delayed computation. |
9 * | 9 * |
10 * A [Future] is used to obtain a not yet | 10 * A [Future] is used to obtain a not yet |
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
401 * }); | 401 * }); |
402 * } | 402 * } |
403 */ | 403 */ |
404 Future<T> whenComplete(action()); | 404 Future<T> whenComplete(action()); |
405 | 405 |
406 /** | 406 /** |
407 * Creates a [Stream] that sends [this]' completion value, data or error, to | 407 * Creates a [Stream] that sends [this]' completion value, data or error, to |
408 * its subscribers. The stream closes after the completion value. | 408 * its subscribers. The stream closes after the completion value. |
409 */ | 409 */ |
410 Stream<T> asStream(); | 410 Stream<T> asStream(); |
| 411 |
| 412 /** |
| 413 * Time-out the future computation after [timeLimit] has passed. |
| 414 * |
| 415 * Returns a new future that completes with the same value as this future, |
| 416 * if this future completes in time. |
| 417 * |
| 418 * If this future does not complete before `timeLimit` has passed, |
| 419 * the [onTimeout] action is executed instead, and its result (whether it |
| 420 * returns or throws) is used as the result of the returned future. |
| 421 * |
| 422 * If `onTimeout` is omitted, a timeout will cause the returned future to |
| 423 * complete with a [TimeoutException]. |
| 424 */ |
| 425 Future timeout(Duration timeLimit, [void onTimeout()]); |
411 } | 426 } |
412 | 427 |
413 /** | 428 /** |
| 429 * Thrown when a scheduled timeout happens while waiting for an async result. |
| 430 */ |
| 431 class TimeoutException implements Exception { |
| 432 /** The duration that was exceeded without a result. */ |
| 433 final Duration duration; |
| 434 |
| 435 TimeoutException(this.duration); |
| 436 |
| 437 String toString() => "Timeout after $duration"; |
| 438 } |
| 439 |
| 440 /** |
414 * A way to produce Future objects and to complete them later | 441 * A way to produce Future objects and to complete them later |
415 * with a value or error. | 442 * with a value or error. |
416 * | 443 * |
417 * If you already have a Future, you probably don't need a Completer. | 444 * If you already have a Future, you probably don't need a Completer. |
418 * Instead, you can usually use [Future.then], which returns a Future: | 445 * Instead, you can usually use [Future.then], which returns a Future: |
419 * | 446 * |
420 * Future doStuff(){ | 447 * Future doStuff(){ |
421 * return someAsyncOperation().then((result) { | 448 * return someAsyncOperation().then((result) { |
422 * // Do something. | 449 * // Do something. |
423 * }); | 450 * }); |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
534 * theFuture.catchError(thisCompleter.completeError); | 561 * theFuture.catchError(thisCompleter.completeError); |
535 * | 562 * |
536 */ | 563 */ |
537 void completeError(Object error, [StackTrace stackTrace]); | 564 void completeError(Object error, [StackTrace stackTrace]); |
538 | 565 |
539 /** | 566 /** |
540 * Whether the future has been completed. | 567 * Whether the future has been completed. |
541 */ | 568 */ |
542 bool get isCompleted; | 569 bool get isCompleted; |
543 } | 570 } |
OLD | NEW |