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

Unified Diff: utils/pub/utils.dart

Issue 10790079: Use a lockfile to persist Pub's installed version constellation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: utils/pub/utils.dart
diff --git a/utils/pub/utils.dart b/utils/pub/utils.dart
index 6aef021573c852584606209f93fd363105431079..211b5a7b3ce6c50b1de13615695dc577d4a3d445 100644
--- a/utils/pub/utils.dart
+++ b/utils/pub/utils.dart
@@ -8,6 +8,7 @@
#library('utils');
#import('dart:crypto');
+#import('dart:isolate');
/** Thrown by methods that parse text when the text isn't a valid. */
class FormatException implements Exception {
@@ -118,3 +119,12 @@ bool endsWithPattern(String str, Pattern matcher) {
*/
String sha1(String source) =>
CryptoUtils.bytesToHex(new SHA1().update(source.charCodes()).digest());
+
+/**
+ * Returns a [Future] that completes in [milliSeconds].
+ */
+Future sleep(int milliSeconds) {
+ var completer = new Completer();
+ new Timer(milliSeconds, completer.complete);
+ return completer.future;
+}

Powered by Google App Engine
This is Rietveld 408576698