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

Unified Diff: sdk/lib/async/future_impl.dart

Issue 91213002: Add Future.timeout. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/async/future_impl.dart
diff --git a/sdk/lib/async/future_impl.dart b/sdk/lib/async/future_impl.dart
index 90e9df2b5033586837a245375526a067e24a7805..78bc979a8a831303a647b786bbc5010bfadb7897 100644
--- a/sdk/lib/async/future_impl.dart
+++ b/sdk/lib/async/future_impl.dart
@@ -537,4 +537,34 @@ class _Future<T> implements Future<T> {
source = listener;
}
}
+
+ Future timeout(Duration timeLimit, onTimeout()) {
+ if (_isComplete) return new _Future.immediate(this);
+ Zone zone = Zone.current;
+ onTimeout = zone.registerCallback(onTimeout);
+ _Future result = new _Future();
+ bool completeNormally = true;
+ Timer timer = new Timer(timeLimit, () {
+ completeNormally = false;
+ zone.run(() {
floitsch 2013/11/27 12:31:16 I think it would be nicer if you passed "onTimeout
Lasse Reichstein Nielsen 2013/11/27 12:54:20 Good point. Done.
+ try {
+ result._complete(onTimeout());
+ } catch (e, s) {
+ result._completeError(e, s);
+ }
+ });
+ });
+ this.then((T v) {
+ if (completeNormally) {
+ timer.cancel();
+ result._complete(v);
+ }
+ }, onError: (e, s) {
+ if (completeNormally) {
+ timer.cancel();
+ result._completeError(e, s);
+ }
+ });
+ return result;
+ }
}

Powered by Google App Engine
This is Rietveld 408576698