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

Unified Diff: pkg/barback/lib/src/pool.dart

Issue 101523003: Add chain support to barback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 7 years 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: pkg/barback/lib/src/pool.dart
diff --git a/pkg/barback/lib/src/pool.dart b/pkg/barback/lib/src/pool.dart
index 78cd9d9ede212a4a209c7622179643cc4a42eff8..24100ca6c604e6b57973e3d35b21fcaa788b1880 100644
--- a/pkg/barback/lib/src/pool.dart
+++ b/pkg/barback/lib/src/pool.dart
@@ -9,6 +9,8 @@ import 'dart:collection';
import 'package:stack_trace/stack_trace.dart';
+import 'utils.dart';
+
// TODO(nweiz): put this somewhere that it can be shared between packages.
/// Manages an abstract pool of resources with a limit on how many may be in use
/// at once.
@@ -74,7 +76,7 @@ class Pool {
/// The return value of [callback] is piped to the returned Future.
Future withResource(callback()) {
return request().then((resource) =>
- new Future.sync(callback).whenComplete(resource.release));
+ syncFuture(callback).whenComplete(resource.release));
}
/// If there are any pending requests, this will fire the oldest one.
@@ -108,7 +110,7 @@ class Pool {
void _onTimeout() {
for (var completer in _requestedResources) {
completer.completeError("Pool deadlock: all resources have been "
- "allocated for too long.", new Trace.current().vmTrace);
+ "allocated for too long.", new Chain.current());
}
_requestedResources.clear();
_timer = null;

Powered by Google App Engine
This is Rietveld 408576698