- toCompletable(Publisher<?>) - Static method in class rx.RxReactiveStreams
-
Converst a Publisher into a Completable by ignoring all onNext values and emitting
onError or onComplete only.
- toObservable(Publisher<T>) - Static method in class rx.RxReactiveStreams
-
Convert a Reactive Streams Publisher
into a Rx Observable
.
- toPublisher(Observable<T>) - Static method in class rx.RxReactiveStreams
-
Convert a Rx Observable
into a Reactive Streams Publisher
.
- toPublisher(Completable) - Static method in class rx.RxReactiveStreams
-
Converts an RxJava Completable into a Publisher that emits only onError or onComplete.
- toPublisher(Single<T>) - Static method in class rx.RxReactiveStreams
-
Converts a Single into a Publisher which emits an onNext+onComplete if
the source Single signals a non-null onSuccess; or onError if the source signals
onError(NullPointerException) or a null value.
- toSingle(Publisher<T>) - Static method in class rx.RxReactiveStreams
-
Converts a Publisher into a Single which emits onSuccess if the
Publisher signals an onNext+onComplete; or onError if the publisher signals an
onError, the source Publisher is empty (NoSuchElementException) or the
source Publisher signals more than one onNext (IndexOutOfBoundsException).
- toSubscriber(Subscriber<T>) - Static method in class rx.RxReactiveStreams
-
Convert an RxJava Subscriber
into a Reactive Streams Subscriber
.