Interface AsyncRequestBodyListener
-
- All Superinterfaces:
PublisherListener<ByteBuffer>,SubscriberListener<ByteBuffer>
public interface AsyncRequestBodyListener extends PublisherListener<ByteBuffer>
Listener interface that invokes callbacks associated with aAsyncRequestBodyand any resultingSubscriber.- See Also:
PublisherListener,SubscriberListener
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAsyncRequestBodyListener.NotifyingAsyncRequestBody-
Nested classes/interfaces inherited from interface software.amazon.awssdk.core.async.listener.PublisherListener
PublisherListener.NoOpPublisherListener, PublisherListener.NotifyingPublisher<T>
-
Nested classes/interfaces inherited from interface software.amazon.awssdk.core.async.listener.SubscriberListener
SubscriberListener.NotifyingSubscriber<T>
-
-
Method Summary
Static Methods Modifier and Type Method Description static AsyncRequestBodywrap(AsyncRequestBody delegate, AsyncRequestBodyListener listener)Wrap aAsyncRequestBodywith a new one that will notify aAsyncRequestBodyListenerof important events occurring.-
Methods inherited from interface software.amazon.awssdk.core.async.listener.PublisherListener
publisherSubscribe
-
Methods inherited from interface software.amazon.awssdk.core.async.listener.SubscriberListener
subscriberOnComplete, subscriberOnError, subscriberOnNext, subscriptionCancel
-
-
-
-
Method Detail
-
wrap
static AsyncRequestBody wrap(AsyncRequestBody delegate, AsyncRequestBodyListener listener)
Wrap aAsyncRequestBodywith a new one that will notify aAsyncRequestBodyListenerof important events occurring.
-
-