示例#1
0
 public LeftObserver(WithLatestFromObservable <TLeft, TRight, TResult> .WithLatestFrom parent)
 {
     this.parent = parent;
 }
示例#2
0
 public WithLatestFrom(WithLatestFromObservable <TLeft, TRight, TResult> parent, IObserver <TResult> observer, IDisposable cancel) : base(observer, cancel)
 {
     this.parent = parent;
 }
示例#3
0
 public RightObserver(WithLatestFromObservable <TLeft, TRight, TResult> .WithLatestFrom parent, IDisposable subscription)
 {
     this.parent           = parent;
     this.selfSubscription = subscription;
 }