Class SequentialSubscriber<T>
java.lang.Object
software.amazon.awssdk.utils.async.SequentialSubscriber<T>
- Type Parameters:
T- Type of data requested
- All Implemented Interfaces:
org.reactivestreams.Subscriber<T>
A simple implementation of
Subscriber that requests data one at a time.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidvoidvoidvoidonSubscribe(org.reactivestreams.Subscription subscription)
-
Constructor Details
-
SequentialSubscriber
-
-
Method Details
-
onSubscribe
public void onSubscribe(org.reactivestreams.Subscription subscription) - Specified by:
onSubscribein interfaceorg.reactivestreams.Subscriber<T>
-
onNext
- Specified by:
onNextin interfaceorg.reactivestreams.Subscriber<T>
-
onError
- Specified by:
onErrorin interfaceorg.reactivestreams.Subscriber<T>
-
onComplete
public void onComplete()- Specified by:
onCompletein interfaceorg.reactivestreams.Subscriber<T>
-