Skip to content

Commit 7b5127d

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 178e793 + 1bd2153 commit 7b5127d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
Using `rxdart`'s `flatMap` with `maxConcurrent` to limit the number of concurrent requests.
44

5+
## Author: [Petrus Nguyễn Thái Học](https://github.com/hoc081098)
6+
7+
[![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fhoc081098%2Frxdart_flatmap_max_concurrent&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false)](https://hits.seeyoufarm.com)
8+
59
```dart
610
Stream<void> sendRequest(_Entry entry) {
711
print('SimpleClient: --> ${entry.request.url}');
@@ -17,4 +21,4 @@ Stream<void> sendRequest(_Entry entry) {
1721
requestController.stream
1822
.flatMap(sendRequest, maxConcurrent: maxConcurrent)
1923
.listen(null);
20-
```
24+
```

0 commit comments

Comments
 (0)