Example #1
0
 internal RetryWhenSubscriber(IFlowableSubscriber <T> actual, IFlowableProcessor <Exception> signaller, IFlowable <T> source)
 {
     this.actual    = actual;
     this.signaller = signaller;
     this.source    = source;
     this.handler   = new HandlerSubscriber(this);
 }
 internal RepeatWhenSubscriber(IFlowableSubscriber <T> actual, IFlowableProcessor <object> signaller, IFlowable <T> source)
 {
     this.actual    = actual;
     this.signaller = signaller;
     this.source    = source;
     this.handler   = new HandlerSubscriber(this);
 }
 public ConnectableFlowableMulticast(IFlowable <T> source, Func <IFlowableProcessor <T> > processorSupplier) : base(source)
 {
     this.processorSupplier = processorSupplier;
     this.processor         = processorSupplier();
 }
Example #4
0
 internal MulticastOnCancel(IFlowableSubscriber <R> actual, IFlowableProcessor <T> processor)
 {
     this.actual    = actual;
     this.processor = processor;
 }
 internal FlowableProcessorSerialize(IFlowableProcessor <T> actual)
 {
     this.actual = actual;
 }
 internal FlowableProcessorRefCount(IFlowableProcessor <T> source)
 {
     this.source = source;
 }