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.
1 parent 7b5127d commit 2724df1Copy full SHA for 2724df1
README.md
@@ -13,7 +13,9 @@ Stream<void> sendRequest(_Entry entry) {
13
return _client
14
.send(entry.request)
15
.asStream()
16
+ .doOnError(entry.completer.completeError)
17
.doOnData(entry.completer.complete)
18
+ .onErrorResumeNext(Stream.empty())
19
.doOnCancel(() => print('SimpleClient: <-- ${entry.request.url}'));
20
}
21
0 commit comments