上海虹口龙之梦项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

46 lines
1.3 KiB

using System;
using UniRx.Operators;
namespace UniRx.Operators
{
internal class AsSingleUnitObservableObservable<T> : OperatorObservableBase<Unit>
{
readonly IObservable<T> source;
public AsSingleUnitObservableObservable(IObservable<T> source)
: base(source.IsRequiredSubscribeOnCurrentThread())
{
this.source = source;
}
protected override IDisposable SubscribeCore(IObserver<Unit> observer, IDisposable cancel)
{
return source.Subscribe(new AsSingleUnitObservable(observer, cancel));
}
class AsSingleUnitObservable : OperatorObserverBase<T, Unit>
{
public AsSingleUnitObservable(IObserver<Unit> observer, IDisposable cancel) : base(observer, cancel)
{
}
public override void OnNext(T value)
{
}
public override void OnError(Exception error)
{
try { observer.OnError(error); }
finally { Dispose(); }
}
public override void OnCompleted()
{
observer.OnNext(Unit.Default);
try { observer.OnCompleted(); }
finally { Dispose(); }
}
}
}
}