We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 178e793 + 1bd2153 commit 7b5127dCopy full SHA for 7b5127d
README.md
@@ -2,6 +2,10 @@
2
3
Using `rxdart`'s `flatMap` with `maxConcurrent` to limit the number of concurrent requests.
4
5
+## Author: [Petrus Nguyễn Thái Học](https://github.com/hoc081098)
6
+
7
+[](https://hits.seeyoufarm.com)
8
9
```dart
10
Stream<void> sendRequest(_Entry entry) {
11
print('SimpleClient: --> ${entry.request.url}');
@@ -17,4 +21,4 @@ Stream<void> sendRequest(_Entry entry) {
17
21
requestController.stream
18
22
.flatMap(sendRequest, maxConcurrent: maxConcurrent)
19
23
.listen(null);
20
-```
24
+```
0 commit comments