Skip to content

Commit 1914776

Browse files
committed
Add @SInCE 2.1.7 - experimental
1 parent 8b67bbf commit 1914776

File tree

10 files changed

+10
-0
lines changed

10 files changed

+10
-0
lines changed

src/main/java/io/reactivex/Completable.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -921,6 +921,7 @@ public final Completable andThen(CompletableSource next) {
921921
* @param converter the function that receives the current Completable instance and returns a value
922922
* @return the converted value
923923
* @throws NullPointerException if converter is null
924+
* @since 2.1.7 - experimental
924925
*/
925926
@Experimental
926927
@CheckReturnValue

src/main/java/io/reactivex/CompletableConverter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
* value fluently.
2121
*
2222
* @param <R> the output type
23+
* @since 2.1.7 - experimental
2324
*/
2425
@Experimental
2526
public interface CompletableConverter<R> {

src/main/java/io/reactivex/Flowable.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5252,6 +5252,7 @@ public final Single<Boolean> any(Predicate<? super T> predicate) {
52525252
* @param converter the function that receives the current Flowable instance and returns a value
52535253
* @return the converted value
52545254
* @throws NullPointerException if converter is null
5255+
* @since 2.1.7 - experimental
52555256
*/
52565257
@Experimental
52575258
@CheckReturnValue

src/main/java/io/reactivex/FlowableConverter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
*
2222
* @param <T> the upstream type
2323
* @param <R> the output type
24+
* @since 2.1.7 - experimental
2425
*/
2526
@Experimental
2627
public interface FlowableConverter<T, R> {

src/main/java/io/reactivex/Maybe.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2002,6 +2002,7 @@ public final Maybe<T> ambWith(MaybeSource<? extends T> other) {
20022002
* @param converter the function that receives the current Maybe instance and returns a value
20032003
* @return the converted value
20042004
* @throws NullPointerException if converter is null
2005+
* @since 2.1.7 - experimental
20052006
*/
20062007
@Experimental
20072008
@CheckReturnValue

src/main/java/io/reactivex/MaybeConverter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
*
2222
* @param <T> the upstream type
2323
* @param <R> the output type
24+
* @since 2.1.7 - experimental
2425
*/
2526
@Experimental
2627
public interface MaybeConverter<T, R> {

src/main/java/io/reactivex/Observable.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4813,6 +4813,7 @@ public final Single<Boolean> any(Predicate<? super T> predicate) {
48134813
* @param converter the function that receives the current Observable instance and returns a value
48144814
* @return the converted value
48154815
* @throws NullPointerException if converter is null
4816+
* @since 2.1.7 - experimental
48164817
*/
48174818
@Experimental
48184819
@CheckReturnValue

src/main/java/io/reactivex/ObservableConverter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
*
2222
* @param <T> the upstream type
2323
* @param <R> the output type
24+
* @since 2.1.7 - experimental
2425
*/
2526
@Experimental
2627
public interface ObservableConverter<T, R> {

src/main/java/io/reactivex/Single.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1535,6 +1535,7 @@ public final Single<T> ambWith(SingleSource<? extends T> other) {
15351535
* @param converter the function that receives the current Single instance and returns a value
15361536
* @return the converted value
15371537
* @throws NullPointerException if converter is null
1538+
* @since 2.1.7 - experimental
15381539
*/
15391540
@Experimental
15401541
@CheckReturnValue

src/main/java/io/reactivex/SingleConverter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
*
2222
* @param <T> the upstream type
2323
* @param <R> the output type
24+
* @since 2.1.7 - experimental
2425
*/
2526
@Experimental
2627
public interface SingleConverter<T, R> {

0 commit comments

Comments
 (0)