File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5159,13 +5159,13 @@ public final Observable<T> onBackpressureBuffer() {
5159
5159
}
5160
5160
5161
5161
/**
5162
- * Use this operator when the upstream does not natively support backpressure and you wish to drop
5163
- * {@code onNext} when unable to handle further events .
5162
+ * Instructs an Observable that is emitting items faster than its observer can consume them to discard,
5163
+ * rather than emit, those items that its observer is not prepared to observe .
5164
5164
* <p>
5165
5165
* <img width="640" height="245" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/bp.obp.drop.png" alt="">
5166
5166
* <p>
5167
- * If the downstream request count hits 0 then {@code onNext} will be dropped until {@code request(long n)}
5168
- * is invoked again to increase the request count.
5167
+ * If the downstream request count hits 0 then the Observable will refrain from calling {@code onNext} until
5168
+ * the observer invokes {@code request(n)} again to increase the request count.
5169
5169
* <dl>
5170
5170
* <dt><b>Scheduler:</b></dt>
5171
5171
* <dd>{@code onBackpressureDrop} does not operate by default on a particular {@link Scheduler}.</dd>
You can’t perform that action at this time.
0 commit comments