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.
45 lines
1.2 KiB
45 lines
1.2 KiB
1 year ago
|
using System;
|
||
|
|
||
|
namespace UniRx.Operators
|
||
|
{
|
||
|
internal class AsUnitObservableObservable<T> : OperatorObservableBase<Unit>
|
||
|
{
|
||
|
readonly IObservable<T> source;
|
||
|
|
||
|
public AsUnitObservableObservable(IObservable<T> source)
|
||
|
: base(source.IsRequiredSubscribeOnCurrentThread())
|
||
|
{
|
||
|
this.source = source;
|
||
|
}
|
||
|
|
||
|
protected override IDisposable SubscribeCore(IObserver<Unit> observer, IDisposable cancel)
|
||
|
{
|
||
|
return source.Subscribe(new AsUnitObservable(observer, cancel));
|
||
|
}
|
||
|
|
||
|
class AsUnitObservable : OperatorObserverBase<T, Unit>
|
||
|
{
|
||
|
public AsUnitObservable(IObserver<Unit> observer, IDisposable cancel)
|
||
|
: base(observer, cancel)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public override void OnNext(T value)
|
||
|
{
|
||
|
base.observer.OnNext(Unit.Default);
|
||
|
}
|
||
|
|
||
|
public override void OnError(Exception error)
|
||
|
{
|
||
|
try { observer.OnError(error); }
|
||
|
finally { Dispose(); }
|
||
|
}
|
||
|
|
||
|
public override void OnCompleted()
|
||
|
{
|
||
|
try { observer.OnCompleted(); }
|
||
|
finally { Dispose(); }
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|