| 1234567891011121314151617181920212223242526272829303132333435363738 | // 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;using System.Reactive.Concurrency;namespace ReactiveTests.Dummies{    internal class DummyScheduler : IScheduler    {        public static readonly DummyScheduler Instance = new DummyScheduler();        private DummyScheduler()        {        }        public DateTimeOffset Now        {            get { return DateTimeOffset.MinValue; }        }        public IDisposable Schedule<TState>(TState state, Func<IScheduler, TState, IDisposable> action)        {            throw new NotImplementedException();        }        public IDisposable Schedule<TState>(TState state, TimeSpan dueTime, Func<IScheduler, TState, IDisposable> action)        {            throw new NotImplementedException();        }        public IDisposable Schedule<TState>(TState state, DateTimeOffset dueTime, Func<IScheduler, TState, IDisposable> action)        {            throw new NotImplementedException();        }    }}
 |