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.
53 lines
1.6 KiB
53 lines
1.6 KiB
using System; |
|
|
|
namespace UniRx.Operators |
|
{ |
|
internal class MaterializeObservable<T> : OperatorObservableBase<Notification<T>> |
|
{ |
|
readonly IObservable<T> source; |
|
|
|
public MaterializeObservable(IObservable<T> source) |
|
: base(source.IsRequiredSubscribeOnCurrentThread()) |
|
{ |
|
this.source = source; |
|
} |
|
|
|
protected override IDisposable SubscribeCore(IObserver<Notification<T>> observer, IDisposable cancel) |
|
{ |
|
return new Materialize(this, observer, cancel).Run(); |
|
} |
|
|
|
class Materialize : OperatorObserverBase<T, Notification<T>> |
|
{ |
|
readonly MaterializeObservable<T> parent; |
|
|
|
public Materialize(MaterializeObservable<T> parent, IObserver<Notification<T>> observer, IDisposable cancel) |
|
: base(observer, cancel) |
|
{ |
|
this.parent = parent; |
|
} |
|
|
|
public IDisposable Run() |
|
{ |
|
return parent.source.Subscribe(this); |
|
} |
|
|
|
public override void OnNext(T value) |
|
{ |
|
observer.OnNext(Notification.CreateOnNext(value)); |
|
} |
|
|
|
public override void OnError(Exception error) |
|
{ |
|
observer.OnNext(Notification.CreateOnError<T>(error)); |
|
try { observer.OnCompleted(); } finally { Dispose(); } |
|
} |
|
|
|
public override void OnCompleted() |
|
{ |
|
observer.OnNext(Notification.CreateOnCompleted<T>()); |
|
try { observer.OnCompleted(); } finally { Dispose(); } |
|
} |
|
} |
|
} |
|
} |