Skip to content

Commit

Permalink
Add Experimental to onBackpressureDrop(Action1)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjchristensen committed Mar 4, 2015
1 parent 4dd7040 commit 8758fdd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/rx/Observable.java
Original file line number Diff line number Diff line change
Expand Up @@ -5279,7 +5279,10 @@ public final Observable<T> onBackpressureBuffer(long capacity, Action0 onOverflo
* @param onDrop the action to invoke for each item dropped. onDrop action should be fast and should never block.
* @return the source Observable modified to drop {@code onNext} notifications on overflow
* @see <a href="http://reactivex.io/documentation/operators/backpressure.html">ReactiveX operators documentation: backpressure operators</a>
* @Experimental The behavior of this can change at any time.
* @since (if this graduates from Experimental/Beta to supported, replace this parenthetical with the release number)
*/
@Experimental
public final Observable<T> onBackpressureDrop(Action1<? super T> onDrop) {
return lift(new OperatorOnBackpressureDrop<T>(onDrop));
}
Expand Down

0 comments on commit 8758fdd

Please sign in to comment.