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>
Allows to send trailing data before invoking onComplete on the downstream subscriber.
 trailingDataIterable will be created when the upstream subscriber has called onComplete.
- 
Constructor Summary
ConstructorsConstructorDescriptionAddingTrailingDataSubscriber(org.reactivestreams.Subscriber<? super T> subscriber, Supplier<Iterable<T>> trailingDataIterableSupplier)  - 
Method Summary
Modifier and TypeMethodDescriptionvoidvoidvoidvoidonSubscribe(org.reactivestreams.Subscription subscription)  
- 
Constructor Details
- 
AddingTrailingDataSubscriber
 
 - 
 - 
Method Details
- 
onSubscribe
public void onSubscribe(org.reactivestreams.Subscription subscription) - Specified by:
 onSubscribein interfaceorg.reactivestreams.Subscriber<T>- Overrides:
 onSubscribein classDelegatingSubscriber<T,T> 
 - 
onError
- Specified by:
 onErrorin interfaceorg.reactivestreams.Subscriber<T>- Overrides:
 onErrorin classDelegatingSubscriber<T,T> 
 - 
onNext
 - 
onComplete
public void onComplete()- Specified by:
 onCompletein interfaceorg.reactivestreams.Subscriber<T>- Overrides:
 onCompletein classDelegatingSubscriber<T,T> 
 
 -