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;
|
||
|
using UniRx.Operators;
|
||
|
|
||
|
namespace UniRx.Operators
|
||
|
{
|
||
|
internal class AsObservableObservable<T> : OperatorObservableBase<T>
|
||
|
{
|
||
|
readonly IObservable<T> source;
|
||
|
|
||
|
public AsObservableObservable(IObservable<T> source)
|
||
|
: base(source.IsRequiredSubscribeOnCurrentThread())
|
||
|
{
|
||
|
this.source = source;
|
||
|
}
|
||
|
|
||
|
protected override IDisposable SubscribeCore(IObserver<T> observer, IDisposable cancel)
|
||
|
{
|
||
|
return source.Subscribe(new AsObservable(observer, cancel));
|
||
|
}
|
||
|
|
||
|
class AsObservable : OperatorObserverBase<T, T>
|
||
|
{
|
||
|
public AsObservable(IObserver<T> observer, IDisposable cancel) : base(observer, cancel)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public override void OnNext(T value)
|
||
|
{
|
||
|
base.observer.OnNext(value);
|
||
|
}
|
||
|
|
||
|
public override void OnError(Exception error)
|
||
|
{
|
||
|
try { observer.OnError(error); }
|
||
|
finally { Dispose(); }
|
||
|
}
|
||
|
|
||
|
public override void OnCompleted()
|
||
|
{
|
||
|
try { observer.OnCompleted(); }
|
||
|
finally { Dispose(); }
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|