// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. #if !NO_PERF using System; using System.Collections.Generic; using System.Reactive.Concurrency; using System.Reactive.Disposables; namespace System.Reactive.Linq.Observαble { class OnErrorResumeNext : Producer { private readonly IEnumerable> _sources; public OnErrorResumeNext(IEnumerable> sources) { _sources = sources; } protected override IDisposable Run(IObserver observer, IDisposable cancel, Action setSink) { var sink = new _(observer, cancel); setSink(sink); return sink.Run(_sources); } class _ : TailRecursiveSink { public _(IObserver observer, IDisposable cancel) : base(observer, cancel) { } protected override IEnumerable> Extract(IObservable source) { var oern = source as OnErrorResumeNext; if (oern != null) return oern._sources; return null; } public override void OnNext(TSource value) { base._observer.OnNext(value); } public override void OnError(Exception error) { _recurse(); } public override void OnCompleted() { _recurse(); } } } } #endif