Class DrainingSubscriber<T>
java.lang.Object
software.amazon.awssdk.core.async.DrainingSubscriber<T>
- All Implemented Interfaces:
org.reactivestreams.Subscriber<T>
Requests elements from a subscriber until the subscription is completed.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
void
void
void
onSubscribe
(org.reactivestreams.Subscription subscription)
-
Constructor Details
-
DrainingSubscriber
public DrainingSubscriber()
-
-
Method Details
-
onSubscribe
public void onSubscribe(org.reactivestreams.Subscription subscription) - Specified by:
onSubscribe
in interfaceorg.reactivestreams.Subscriber<T>
-
onNext
- Specified by:
onNext
in interfaceorg.reactivestreams.Subscriber<T>
-
onError
- Specified by:
onError
in interfaceorg.reactivestreams.Subscriber<T>
-
onComplete
public void onComplete()- Specified by:
onComplete
in interfaceorg.reactivestreams.Subscriber<T>
-