Class SubscriberListener.NotifyingSubscriber<T>
- java.lang.Object
-
- software.amazon.awssdk.core.async.listener.SubscriberListener.NotifyingSubscriber<T>
-
- All Implemented Interfaces:
org.reactivestreams.Subscriber<T>
- Enclosing interface:
- SubscriberListener<T>
@SdkInternalApi public static final class SubscriberListener.NotifyingSubscriber<T> extends Object implements org.reactivestreams.Subscriber<T>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonComplete()voidonError(Throwable t)voidonNext(T t)voidonSubscribe(org.reactivestreams.Subscription s)
-
-
-
Method Detail
-
onSubscribe
public void onSubscribe(org.reactivestreams.Subscription s)
- Specified by:
onSubscribein interfaceorg.reactivestreams.Subscriber<T>
-
onError
public void onError(Throwable t)
- Specified by:
onErrorin interfaceorg.reactivestreams.Subscriber<T>
-
onComplete
public void onComplete()
- Specified by:
onCompletein interfaceorg.reactivestreams.Subscriber<T>
-
-