Example #1
0
 internal void HandlerError(Exception error)
 {
     HalfSerializer.ForwardOnError(this, error, ref halfSerializer, ref this.error);
 }
Example #2
0
 internal void HandlerComplete()
 {
     HalfSerializer.ForwardOnCompleted(this, ref halfSerializer, ref error);
 }
Example #3
0
 public void OnNext(TOther value)
 {
     HalfSerializer.ForwardOnCompleted(_parent, ref _parent._halfSerializer, ref _parent._error);
 }
Example #4
0
 public void OnError(Exception error)
 {
     HalfSerializer.ForwardOnError(_parent, error, ref _parent._halfSerializer, ref _parent._error);
 }
Example #5
0
 public override void OnCompleted()
 {
     HalfSerializer.ForwardOnCompleted(this, ref _halfSerializer, ref _error);
 }
Example #6
0
 public override void OnError(Exception ex)
 {
     HalfSerializer.ForwardOnError(this, ex, ref _halfSerializer, ref _error);
 }
Example #7
0
 public override void OnNext(TSource value)
 {
     HalfSerializer.ForwardOnNext(this, value, ref _halfSerializer, ref _error);
 }