| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 | // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.#if !NO_PERFusing System;using System.Collections.Generic;namespace System.Reactive.Linq.ObservableImpl{    class OnErrorResumeNext<TSource> : Producer<TSource>    {        private readonly IEnumerable<IObservable<TSource>> _sources;        public OnErrorResumeNext(IEnumerable<IObservable<TSource>> sources)        {            _sources = sources;        }        protected override IDisposable Run(IObserver<TSource> observer, IDisposable cancel, Action<IDisposable> setSink)        {            var sink = new _(observer, cancel);            setSink(sink);            return sink.Run(_sources);        }        class _ : TailRecursiveSink<TSource>        {            public _(IObserver<TSource> observer, IDisposable cancel)                : base(observer, cancel)            {            }            protected override IEnumerable<IObservable<TSource>> Extract(IObservable<TSource> source)            {                var oern = source as OnErrorResumeNext<TSource>;                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();            }            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;            }        }    }}#endif
 |