Class 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
      void onComplete()  
      void onError​(java.lang.Throwable failure)  
      void onNext​(T item)  
      void onSubscribe​(org.reactivestreams.Subscription subscription)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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:
        onSubscribe in interface org.reactivestreams.Subscriber<T>
      • onNext

        public void onNext​(T item)
        Specified by:
        onNext in interface org.reactivestreams.Subscriber<T>
      • onError

        public void onError​(java.lang.Throwable failure)
        Specified by:
        onError in interface org.reactivestreams.Subscriber<T>
      • onComplete

        public void onComplete()
        Specified by:
        onComplete in interface org.reactivestreams.Subscriber<T>