Exemple #1
0
 internal FlowableAutoConnect(IConnectableFlowable <T> source, int count, Action <IDisposable> onConnect)
 {
     this.source    = source;
     this.count     = count;
     this.onConnect = onConnect;
 }
Exemple #2
0
 internal FlowableRefCount(IConnectableFlowable <T> source, int count)
 {
     this.source     = source;
     this.count      = count;
     this.connection = new SequentialDisposable();
 }