commit | d12e94521b0e88927cb31fa3a10b068ec45d8809 | [log] [tgz] |
---|---|---|
author | Kevin Moore <kevmoo@google.com> | Fri May 18 22:27:25 2018 |
committer | Kevin Moore <kevmoo@users.noreply.github.com> | Sat May 19 00:42:35 2018 |
tree | 364ad04d00010d487b2abae8da8a6f961f359574 | |
parent | d1fb225f76184ccb6148b5c3fb0f55ff959a7dda [diff] |
Fix a Dart 2 type error. Prepare for release.
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); })); }