[WIP] firebase init Error

This commit is contained in:
2024-08-02 20:09:59 +08:00
commit b77fd9f498
7087 changed files with 1466846 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
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(); }
}
}
}
}