Ejemplo n.º 1
0
 internal FlowableFromObservable(IObservable <T> source, BackpressureStrategy strategy)
 {
     this.source   = source;
     this.strategy = strategy;
 }
 internal FlowableCreate(Action <IFlowableEmitter <T> > emitter, BackpressureStrategy strategy)
 {
     this.emitter  = emitter;
     this.strategy = strategy;
 }