51 lines
1.4 KiB
C#
51 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 ElementAtOrDefault<TSource> : Producer<TSource?, ElementAtOrDefault<TSource>._>
|
|
{
|
|
private readonly IObservable<TSource> _source;
|
|
private readonly int _index;
|
|
|
|
public ElementAtOrDefault(IObservable<TSource> source, int index)
|
|
{
|
|
_source = source;
|
|
_index = index;
|
|
}
|
|
|
|
protected override _ CreateSink(IObserver<TSource?> observer) => new(_index, observer);
|
|
|
|
protected override void Run(_ sink) => sink.Run(_source);
|
|
|
|
internal sealed class _ : Sink<TSource, TSource?>
|
|
{
|
|
private int _i;
|
|
|
|
public _(int index, IObserver<TSource?> observer)
|
|
: base(observer)
|
|
{
|
|
_i = index;
|
|
}
|
|
|
|
public override void OnNext(TSource value)
|
|
{
|
|
if (_i == 0)
|
|
{
|
|
ForwardOnNext(value);
|
|
ForwardOnCompleted();
|
|
}
|
|
|
|
_i--;
|
|
}
|
|
|
|
public override void OnCompleted()
|
|
{
|
|
ForwardOnNext(default);
|
|
ForwardOnCompleted();
|
|
}
|
|
}
|
|
}
|
|
}
|