Package io.smallrye.mutiny.context
Class ContextPropagationMultiInterceptor.ContextPropagationSubscriber<T>
- java.lang.Object
-
- io.smallrye.mutiny.context.ContextPropagationMultiInterceptor.ContextPropagationSubscriber<T>
-
- All Implemented Interfaces:
org.reactivestreams.Subscriber<T>
- Enclosing class:
- ContextPropagationMultiInterceptor
public static class ContextPropagationMultiInterceptor.ContextPropagationSubscriber<T> extends java.lang.Object implements org.reactivestreams.Subscriber<T>
-
-
Constructor Summary
Constructors Constructor Description ContextPropagationSubscriber(java.util.concurrent.Executor executor, org.reactivestreams.Subscriber<? super T> subscriber)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonComplete()voidonError(java.lang.Throwable failure)voidonNext(T item)voidonSubscribe(org.reactivestreams.Subscription subscription)
-
-
-
Constructor Detail
-
ContextPropagationSubscriber
public ContextPropagationSubscriber(java.util.concurrent.Executor executor, org.reactivestreams.Subscriber<? super T> subscriber)
-
-
Method Detail
-
onSubscribe
public void onSubscribe(org.reactivestreams.Subscription subscription)
- Specified by:
onSubscribein interfaceorg.reactivestreams.Subscriber<T>
-
onNext
public void onNext(T item)
- Specified by:
onNextin interfaceorg.reactivestreams.Subscriber<T>
-
onError
public void onError(java.lang.Throwable failure)
- Specified by:
onErrorin interfaceorg.reactivestreams.Subscriber<T>
-
onComplete
public void onComplete()
- Specified by:
onCompletein interfaceorg.reactivestreams.Subscriber<T>
-
-