Skip to content

Commit

Permalink
3.x: Flowable scan/scanWith backpressure documentation merge <dd> sec…
Browse files Browse the repository at this point in the history
…tions
  • Loading branch information
fsbarata committed Nov 12, 2020
1 parent 5c2b102 commit e416b6f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/java/io/reactivex/rxjava3/core/Flowable.java
Original file line number Diff line number Diff line change
Expand Up @@ -14735,9 +14735,9 @@ public final Flowable<T> scan(@NonNull BiFunction<T, T, T> accumulator) {
* <dl>
* <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.
* The upstream is requested {@link #bufferSize()} - 1 upfront and 75% of {@link #bufferSize()} thereafter.</dd>
* Violating this expectation, a {@link MissingBackpressureException} <em>may</em> get signaled somewhere downstream.
* The downstream request pattern is not preserved across this operator.
* The upstream is requested {@link #bufferSize()} - 1 upfront and 75% of {@link #bufferSize()} thereafter.</dd>
* <dt><b>Scheduler:</b></dt>
* <dd>{@code scan} does not operate by default on a particular {@link Scheduler}.</dd>
* </dl>
Expand Down Expand Up @@ -14776,9 +14776,9 @@ public final Flowable<T> scan(@NonNull BiFunction<T, T, T> accumulator) {
* <dl>
* <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.
* The upstream is requested {@link #bufferSize()} - 1 upfront and 75% of {@link #bufferSize()} thereafter.</dd>
* Violating this expectation, a {@link MissingBackpressureException} <em>may</em> get signaled somewhere downstream.
* The downstream request pattern is not preserved across this operator.
* The upstream is requested {@link #bufferSize()} - 1 upfront and 75% of {@link #bufferSize()} thereafter.</dd>
* <dt><b>Scheduler:</b></dt>
* <dd>{@code scanWith} does not operate by default on a particular {@link Scheduler}.</dd>
* </dl>
Expand Down

0 comments on commit e416b6f

Please sign in to comment.