Class CouplingProcessor<I,​O>

  • All Implemented Interfaces:
    org.reactivestreams.Publisher<O>

    public class CouplingProcessor<I,​O>
    extends java.lang.Object
    implements org.reactivestreams.Publisher<O>
    • Constructor Summary

      Constructors 
      Constructor Description
      CouplingProcessor​(org.reactivestreams.Publisher<I> source, org.reactivestreams.Subscriber<I> subscriber, org.reactivestreams.Publisher<O> publisher)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void subscribe​(org.reactivestreams.Subscriber<? super O> subscriber)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CouplingProcessor

        public CouplingProcessor​(org.reactivestreams.Publisher<I> source,
                                 org.reactivestreams.Subscriber<I> subscriber,
                                 org.reactivestreams.Publisher<O> publisher)
    • Method Detail

      • subscribe

        public void subscribe​(org.reactivestreams.Subscriber<? super O> subscriber)
        Specified by:
        subscribe in interface org.reactivestreams.Publisher<I>