-
Notifications
You must be signed in to change notification settings - Fork 7.6k
3.x: Flowable scan/scanWith backpressure documentation update #7110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
3.x: Flowable scan/scanWith backpressure documentation update #7110
Conversation
Documented Flowable initial value scan variants upstream consumption pattern as it is different from the variant with no initial value.
@@ -14736,6 +14736,8 @@ public final void safeSubscribe(@NonNull Subscriber<@NonNull ? super T> subscrib | |||
* <dt><b>Backpressure:</b></dt> | |||
* <dd>The operator honors downstream backpressure and expects the current {@code Flowable} to honor backpressure as well. | |||
* Violating this expectation, a {@link MissingBackpressureException} <em>may</em> get signaled somewhere downstream.</dd> | |||
* <dd>The downstream request pattern is not preserved across this operator. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You don't have to start a new <dd>
here, just add the text on a new line inside the previous <dd>
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- merge
<dd>
sections
Codecov Report
@@ Coverage Diff @@
## 3.x #7110 +/- ##
============================================
+ Coverage 99.51% 99.53% +0.01%
Complexity 6670 6670
============================================
Files 742 742
Lines 47275 47275
Branches 6374 6374
============================================
+ Hits 47048 47054 +6
Misses 104 104
+ Partials 123 117 -6 Continue to review full report at Codecov.
|
Thanks! |
My pleasure! |
Documented Flowable initial value scan variants upstream consumption pattern as it is different from the variant with no initial value.
Resolves #7109