Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SchedulerDefaults.cs « Concurrency « Reactive « System.Reactive.Core « Rx.NET - github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ecbe361d98338d5c783a66871de0e585257237df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.

using System;

namespace System.Reactive.Concurrency
{
    internal static class SchedulerDefaults
    {
        internal static IScheduler ConstantTimeOperations { get { return ImmediateScheduler.Instance; } }
        internal static IScheduler TailRecursion { get { return ImmediateScheduler.Instance; } }
        internal static IScheduler Iteration { get { return CurrentThreadScheduler.Instance; } }
        internal static IScheduler TimeBasedOperations { get { return DefaultScheduler.Instance; } }
        internal static IScheduler AsyncConversions { get { return DefaultScheduler.Instance; } }
    }
}