Class AddingTrailingDataSubscriber<T>
- java.lang.Object
-
- software.amazon.awssdk.utils.async.DelegatingSubscriber<T,T>
-
- software.amazon.awssdk.utils.async.AddingTrailingDataSubscriber<T>
-
- All Implemented Interfaces:
org.reactivestreams.Subscriber<T>
public class AddingTrailingDataSubscriber<T> extends DelegatingSubscriber<T,T>
Allows to send trailing data before invoking onComplete on the downstream subscriber. trailingDataIterable will be created when the upstream subscriber has called onComplete.
-
-
Field Summary
-
Fields inherited from class software.amazon.awssdk.utils.async.DelegatingSubscriber
subscriber
-
-
Constructor Summary
Constructors Constructor Description AddingTrailingDataSubscriber(org.reactivestreams.Subscriber<? super T> subscriber, Supplier<Iterable<T>> trailingDataIterableSupplier)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onComplete()
void
onError(Throwable throwable)
void
onNext(T t)
void
onSubscribe(org.reactivestreams.Subscription subscription)
-
-
-
Method Detail
-
onSubscribe
public void onSubscribe(org.reactivestreams.Subscription subscription)
- Specified by:
onSubscribe
in interfaceorg.reactivestreams.Subscriber<T>
- Overrides:
onSubscribe
in classDelegatingSubscriber<T,T>
-
onError
public void onError(Throwable throwable)
- Specified by:
onError
in interfaceorg.reactivestreams.Subscriber<T>
- Overrides:
onError
in classDelegatingSubscriber<T,T>
-
onNext
public void onNext(T t)
-
onComplete
public void onComplete()
- Specified by:
onComplete
in interfaceorg.reactivestreams.Subscriber<T>
- Overrides:
onComplete
in classDelegatingSubscriber<T,T>
-
-