-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Implement Observable.as() * Implement Single.as() * Implement Maybe.as() * Implement Flowable.as() * Implement Completable.as() * Add Experimental annotations * Add throws doc * Fix docs and validation errors * Add @SInCE 2.1.7 - experimental * ParallelFlowable.as() * Start ConverterTest * Fix tests and update validator * Remove exceptions from signatures * Remove exception signature from implementations * Assert the full execution of extend() tests * Use test() helpers
- Loading branch information
Showing
23 changed files
with
826 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/** | ||
* Copyright (c) 2016-present, RxJava Contributors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in | ||
* compliance with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is | ||
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See | ||
* the License for the specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
package io.reactivex; | ||
|
||
import io.reactivex.annotations.*; | ||
|
||
/** | ||
* Convenience interface and callback used by the {@link Completable#as} operator to turn a Completable into another | ||
* value fluently. | ||
* | ||
* @param <R> the output type | ||
* @since 2.1.7 - experimental | ||
*/ | ||
@Experimental | ||
public interface CompletableConverter<R> { | ||
/** | ||
* Applies a function to the upstream Completable and returns a converted value of type {@code R}. | ||
* | ||
* @param upstream the upstream Completable instance | ||
* @return the converted value | ||
*/ | ||
@NonNull | ||
R apply(@NonNull Completable upstream); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/** | ||
* Copyright (c) 2016-present, RxJava Contributors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in | ||
* compliance with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is | ||
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See | ||
* the License for the specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
package io.reactivex; | ||
|
||
import io.reactivex.annotations.*; | ||
|
||
/** | ||
* Convenience interface and callback used by the {@link Flowable#as} operator to turn a Flowable into another | ||
* value fluently. | ||
* | ||
* @param <T> the upstream type | ||
* @param <R> the output type | ||
* @since 2.1.7 - experimental | ||
*/ | ||
@Experimental | ||
public interface FlowableConverter<T, R> { | ||
/** | ||
* Applies a function to the upstream Flowable and returns a converted value of type {@code R}. | ||
* | ||
* @param upstream the upstream Flowable instance | ||
* @return the converted value | ||
*/ | ||
@NonNull | ||
R apply(@NonNull Flowable<T> upstream); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/** | ||
* Copyright (c) 2016-present, RxJava Contributors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in | ||
* compliance with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is | ||
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See | ||
* the License for the specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
package io.reactivex; | ||
|
||
import io.reactivex.annotations.*; | ||
|
||
/** | ||
* Convenience interface and callback used by the {@link Maybe#as} operator to turn a Maybe into another | ||
* value fluently. | ||
* | ||
* @param <T> the upstream type | ||
* @param <R> the output type | ||
* @since 2.1.7 - experimental | ||
*/ | ||
@Experimental | ||
public interface MaybeConverter<T, R> { | ||
/** | ||
* Applies a function to the upstream Maybe and returns a converted value of type {@code R}. | ||
* | ||
* @param upstream the upstream Maybe instance | ||
* @return the converted value | ||
*/ | ||
@NonNull | ||
R apply(@NonNull Maybe<T> upstream); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/** | ||
* Copyright (c) 2016-present, RxJava Contributors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in | ||
* compliance with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is | ||
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See | ||
* the License for the specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
package io.reactivex; | ||
|
||
import io.reactivex.annotations.*; | ||
|
||
/** | ||
* Convenience interface and callback used by the {@link Observable#as} operator to turn an Observable into another | ||
* value fluently. | ||
* | ||
* @param <T> the upstream type | ||
* @param <R> the output type | ||
* @since 2.1.7 - experimental | ||
*/ | ||
@Experimental | ||
public interface ObservableConverter<T, R> { | ||
/** | ||
* Applies a function to the upstream Observable and returns a converted value of type {@code R}. | ||
* | ||
* @param upstream the upstream Observable instance | ||
* @return the converted value | ||
*/ | ||
@NonNull | ||
R apply(@NonNull Observable<T> upstream); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/** | ||
* Copyright (c) 2016-present, RxJava Contributors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in | ||
* compliance with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is | ||
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See | ||
* the License for the specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
package io.reactivex; | ||
|
||
import io.reactivex.annotations.*; | ||
|
||
/** | ||
* Convenience interface and callback used by the {@link Single#as} operator to turn a Single into another | ||
* value fluently. | ||
* | ||
* @param <T> the upstream type | ||
* @param <R> the output type | ||
* @since 2.1.7 - experimental | ||
*/ | ||
@Experimental | ||
public interface SingleConverter<T, R> { | ||
/** | ||
* Applies a function to the upstream Single and returns a converted value of type {@code R}. | ||
* | ||
* @param upstream the upstream Single instance | ||
* @return the converted value | ||
*/ | ||
@NonNull | ||
R apply(@NonNull Single<T> upstream); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
src/main/java/io/reactivex/parallel/ParallelFlowableConverter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/** | ||
* Copyright (c) 2016-present, RxJava Contributors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in | ||
* compliance with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is | ||
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See | ||
* the License for the specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
package io.reactivex.parallel; | ||
|
||
import io.reactivex.annotations.*; | ||
|
||
/** | ||
* Convenience interface and callback used by the {@link ParallelFlowable#as} operator to turn a ParallelFlowable into | ||
* another value fluently. | ||
* | ||
* @param <T> the upstream type | ||
* @param <R> the output type | ||
* @since 2.1.7 - experimental | ||
*/ | ||
@Experimental | ||
public interface ParallelFlowableConverter<T, R> { | ||
/** | ||
* Applies a function to the upstream ParallelFlowable and returns a converted value of type {@code R}. | ||
* | ||
* @param upstream the upstream ParallelFlowable instance | ||
* @return the converted value | ||
*/ | ||
@NonNull | ||
R apply(@NonNull ParallelFlowable<T> upstream); | ||
} |
Oops, something went wrong.