Skip to content

Commit 8758fdd

Browse files
Add Experimental to onBackpressureDrop(Action1)
1 parent 4dd7040 commit 8758fdd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/rx/Observable.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5279,7 +5279,10 @@ public final Observable<T> onBackpressureBuffer(long capacity, Action0 onOverflo
52795279
* @param onDrop the action to invoke for each item dropped. onDrop action should be fast and should never block.
52805280
* @return the source Observable modified to drop {@code onNext} notifications on overflow
52815281
* @see <a href="http://reactivex.io/documentation/operators/backpressure.html">ReactiveX operators documentation: backpressure operators</a>
5282+
* @Experimental The behavior of this can change at any time.
5283+
* @since (if this graduates from Experimental/Beta to supported, replace this parenthetical with the release number)
52825284
*/
5285+
@Experimental
52835286
public final Observable<T> onBackpressureDrop(Action1<? super T> onDrop) {
52845287
return lift(new OperatorOnBackpressureDrop<T>(onDrop));
52855288
}

0 commit comments

Comments
 (0)