| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | // Licensed to the .NET Foundation under one or more agreements.// The .NET Foundation licenses this file to you under the Apache 2.0 License.// See the LICENSE file in the project root for more information. #if !NO_PERFusing System;using System.Reactive.Concurrency;namespace System.Reactive.Linq.ObservableImpl{    class Empty<TResult> : Producer<TResult>    {        private readonly IScheduler _scheduler;        public Empty(IScheduler scheduler)        {            _scheduler = scheduler;        }        protected override IDisposable Run(IObserver<TResult> observer, IDisposable cancel, Action<IDisposable> setSink)        {            var sink = new _(this, observer, cancel);            setSink(sink);            return sink.Run();        }        class _ : Sink<TResult>        {            private readonly Empty<TResult> _parent;            public _(Empty<TResult> parent, IObserver<TResult> observer, IDisposable cancel)                : base(observer, cancel)            {                _parent = parent;            }            public IDisposable Run()            {                return _parent._scheduler.Schedule(Invoke);            }            private void Invoke()            {                base._observer.OnCompleted();                base.Dispose();            }        }    }}#endif
 |