Skip to content

Commit

Permalink
Experimental annotation.
Browse files Browse the repository at this point in the history
  • Loading branch information
akarnokd committed Feb 19, 2015
1 parent 758fe33 commit 844cc95
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/rx/Observable.java
Original file line number Diff line number Diff line change
Expand Up @@ -8789,6 +8789,7 @@ public final Observable<T> unsubscribeOn(Scheduler scheduler) {
* by using the resultSelector function only when the source observable sequence
* (this instance) produces an element
*/
@Experimental
public final <U, R> Observable<R> withLatestFrom(Observable<? extends U> other, Func2<? super T, ? super U, ? extends R> resultSelector) {
return lift(new OperatorWithLatestFrom<T, U, R>(other, resultSelector));
}
Expand Down

0 comments on commit 844cc95

Please sign in to comment.