Properly release resources after HTTP errors.
Release resources for requests that error out. (#2)

This was causing dart-lang/pub#1610
4 files changed
tree: 7eca48afc6d3a4f49d883040fed12e1577e49b72
  1. lib/
  2. test/
  3. .gitignore
  4. .test_config
  5. CHANGELOG.md
  6. codereview.settings
  7. LICENSE
  8. pubspec.yaml
  9. README.md
README.md

http_throttle is middleware for the http package that throttles the number of concurrent requests that an HTTP client can make.

// This client allows 32 concurrent requests.
final client = new ThrottleClient(32);

Future<List<String>> readAllUrls(Iterable<Uri> urls) {
  return Future.wait(urls.map((url) {
    // You can safely call as many client methods as you want concurrently, and
    // ThrottleClient will ensure that only 32 underlying HTTP requests will be
    // open at once.
    return client.read(url);
  }));
}