// 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. using System.Collections.Generic; namespace System.Reactive.Linq.ObservableImpl { internal sealed class OnErrorResumeNext : Producer._> { private readonly IEnumerable> _sources; public OnErrorResumeNext(IEnumerable> sources) { _sources = sources; } protected override _ CreateSink(IObserver observer) => new(observer); protected override void Run(_ sink) => sink.Run(_sources); internal sealed class _ : TailRecursiveSink { public _(IObserver observer) : base(observer) { } protected override IEnumerable>? Extract(IObservable source) { if (source is OnErrorResumeNext oern) { return oern._sources; } return null; } public override void OnError(Exception error) { Recurse(); } public override void OnCompleted() { Recurse(); } protected override bool Fail(Exception error) { // // Note that the invocation of _recurse in OnError will // cause the next MoveNext operation to be enqueued, so // we will still return to the caller immediately. // OnError(error); return true; } } } }