| Index: pkg/http_throttle/README.md
|
| diff --git a/pkg/http_throttle/README.md b/pkg/http_throttle/README.md
|
| deleted file mode 100644
|
| index fcbacdbba0c29bd5c0ec4fbaa3ed0a828614124f..0000000000000000000000000000000000000000
|
| --- a/pkg/http_throttle/README.md
|
| +++ /dev/null
|
| @@ -1,18 +0,0 @@
|
| -`http_throttle` is middleware for the [http package][] that throttles the number
|
| -of concurrent requests that an HTTP client can make.
|
| -
|
| -```dart
|
| -// 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);
|
| - }));
|
| -}
|
| -```
|
| -
|
| -[http package]: pub.dartlang.org/packages/http
|
|
|