Kit.Core/LibExternal/System.Reactive/Linq/Observable/Cast.cs

45 lines
1.4 KiB
C#

// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT License.
// See the LICENSE file in the project root for more information.
namespace System.Reactive.Linq.ObservableImpl
{
internal sealed class Cast<TSource, TResult> : Producer<TResult, Cast<TSource, TResult>._> /* Could optimize further by deriving from Select<TResult> and providing Combine<TResult2>. We're not doing this (yet) for debuggability. */
{
private readonly IObservable<TSource> _source;
public Cast(IObservable<TSource> source)
{
_source = source;
}
protected override _ CreateSink(IObserver<TResult> observer) => new(observer);
protected override void Run(_ sink) => sink.Run(_source);
internal sealed class _ : Sink<TSource, TResult>
{
public _(IObserver<TResult> observer)
: base(observer)
{
}
public override void OnNext(TSource value)
{
TResult? result;
try
{
result = (TResult?)(object?)value;
}
catch (Exception exception)
{
ForwardOnError(exception);
return;
}
ForwardOnNext(result!);
}
}
}
}