C O P R S
All Classes All Packages
All Classes All Packages
All Classes All Packages
C
- cancel() - Method in interface org.reactivestreams.Subscription
-
Request the
Publisherto stop sending data and clean up resources.
O
- onComplete() - Method in interface org.reactivestreams.Subscriber
-
Successful terminal state.
- onError(Throwable) - Method in interface org.reactivestreams.Subscriber
-
Failed terminal state.
- onNext(T) - Method in interface org.reactivestreams.Subscriber
-
Data notification sent by the
Publisherin response to requests toSubscription.request(long). - onSubscribe(Subscription) - Method in interface org.reactivestreams.Subscriber
-
Invoked after calling
subscribe(Subscriber). - org.reactivestreams - package org.reactivestreams
P
- Processor<T,R> - Interface in org.reactivestreams
-
A Processor represents a processing stage—which is both a
Subscriberand aPublisherand obeys the contracts of both. - Publisher<T> - Interface in org.reactivestreams
-
A
Publisheris a provider of a potentially unbounded number of sequenced elements, publishing them according to the demand received from itsSubscriber(s).
R
- request(long) - Method in interface org.reactivestreams.Subscription
-
No events will be sent by a
Publisheruntil demand is signaled via this method.
S
- subscribe(Subscriber<? super T>) - Method in interface org.reactivestreams.Publisher
-
Request
Publisherto start streaming data. - Subscriber<T> - Interface in org.reactivestreams
-
Will receive call to
Subscriber.onSubscribe(Subscription)once after passing an instance ofSubscribertosubscribe(Subscriber). - Subscription - Interface in org.reactivestreams
All Classes All Packages