Example #1
0
            public IDisposable Run()
            {
                this.tick = new ThrottleFirstFrameObservable <T> .ThrottleFirstFrame.ThrottleFirstFrameTick(this);

                this.cancelable = new SerialDisposable();
                IDisposable disposable = this.parent.source.Subscribe(this);

                return(StableCompositeDisposable.Create(this.cancelable, disposable));
            }
Example #2
0
 public ThrottleFirstFrame(ThrottleFirstFrameObservable <T> parent, IObserver <T> observer, IDisposable cancel) : base(observer, cancel)
 {
     this.parent = parent;
 }
Example #3
0
 public ThrottleFirstFrameTick(ThrottleFirstFrameObservable <T> .ThrottleFirstFrame parent)
 {
     this.parent = parent;
 }