Exemple #1
0
 public ReusableEnumerator(BatchFrameObservable <T> .BatchFrame parent)
 {
     this.parent = parent;
 }
Exemple #2
0
 public BatchFrame(BatchFrameObservable <T> parent, IObserver <IList <T> > observer, IDisposable cancel) : base(observer, cancel)
 {
     this.parent = parent;
     this.timer  = new ReusableEnumerator(this);
 }
 public BatchFrame(BatchFrameObservable parent, IObserver <Unit> observer, IDisposable cancel) : base(observer, cancel)
 {
     this.parent = parent;
     this.timer  = new BatchFrameObservable.BatchFrame.ReusableEnumerator(this);
 }