RxJava

C I O P R S T U 

C

call(CompletableSubscriber) - Method in class rx.internal.reactivestreams.PublisherAsCompletable
 
call(SingleSubscriber<? super T>) - Method in class rx.internal.reactivestreams.PublisherAsSingle
 
CompletableAsPublisher<T> - Class in rx.internal.reactivestreams
Wraps a Completable and exposes it as a Publisher.
CompletableAsPublisher(Completable) - Constructor for class rx.internal.reactivestreams.CompletableAsPublisher
 

I

isUnsubscribed() - Method in class rx.internal.reactivestreams.RxJavaSynchronizedProducer
 

O

onComplete() - Method in class rx.internal.reactivestreams.SubscriberAdapter
 
onError(Throwable) - Method in class rx.internal.reactivestreams.SubscriberAdapter
 
onNext(T) - Method in class rx.internal.reactivestreams.SubscriberAdapter
 
onSubscribe(Subscription) - Method in class rx.internal.reactivestreams.SubscriberAdapter
 

P

PublisherAdapter<T> - Class in rx.internal.reactivestreams
 
PublisherAdapter(Observable<T>) - Constructor for class rx.internal.reactivestreams.PublisherAdapter
 
PublisherAsCompletable - Class in rx.internal.reactivestreams
Wraps an arbitrary Publisher and exposes it as a Completable, ignoring any onNext events.
PublisherAsCompletable(Publisher<?>) - Constructor for class rx.internal.reactivestreams.PublisherAsCompletable
 
PublisherAsSingle<T> - Class in rx.internal.reactivestreams
Wraps a Publisher and exposes it as a Single, signalling NoSuchElementException if the Publisher is empty or IndexOutOfBoundsExcepion if the Publisher produces more than one element.
PublisherAsSingle(Publisher<T>) - Constructor for class rx.internal.reactivestreams.PublisherAsSingle
 

R

request(long) - Method in class rx.internal.reactivestreams.RxJavaSynchronizedProducer
 
rx - package rx
 
rx.internal.reactivestreams - package rx.internal.reactivestreams
 
RxJavaSynchronizedProducer - Class in rx.internal.reactivestreams
 
RxJavaSynchronizedProducer(Subscription) - Constructor for class rx.internal.reactivestreams.RxJavaSynchronizedProducer
 
RxReactiveStreams - Class in rx
This type provides static factory methods for converting to and from RxJava types and Reactive Streams types.

S

SingleAsPublisher<T> - Class in rx.internal.reactivestreams
Wraps a Single and exposes it as a Publisher.
SingleAsPublisher(Single<T>) - Constructor for class rx.internal.reactivestreams.SingleAsPublisher
 
subscribe(Subscriber<? super T>) - Method in class rx.internal.reactivestreams.CompletableAsPublisher
 
subscribe(Subscriber<? super T>) - Method in class rx.internal.reactivestreams.PublisherAdapter
 
subscribe(Subscriber<? super T>) - Method in class rx.internal.reactivestreams.SingleAsPublisher
 
SubscriberAdapter<T> - Class in rx.internal.reactivestreams
 
SubscriberAdapter(Subscriber<? super T>) - Constructor for class rx.internal.reactivestreams.SubscriberAdapter
 

T

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.

U

unsubscribe() - Method in class rx.internal.reactivestreams.RxJavaSynchronizedProducer
 
C I O P R S T U