Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Wow, that was not trivial to find...</p> <p>Deep within the bowels of the <code>System.Reactive.Concurrency</code> namespace, there is an internal static class called <code>SchedulerDefaults</code>, which is declared as:</p> <pre><code>internal static class SchedulerDefaults { internal static IScheduler AsyncConversions { get { return DefaultScheduler.Instance; }} internal static IScheduler ConstantTimeOperations { get { return ImmediateScheduler.Instance; }} internal static IScheduler Iteration { get { return CurrentThreadScheduler.Instance; }} internal static IScheduler TailRecursion { get { return ImmediateScheduler.Instance; }} internal static IScheduler TimeBasedOperations { get { return DefaultScheduler.Instance; }} } </code></pre> <p><code>AsyncConversions</code> is used by:</p> <pre><code>Start, ToAsync, FromAsyncPattern </code></pre> <p><code>ConstantTimeOperations</code> is used by:</p> <pre><code>Empty, GetSchedulerForCurrentContext, Return, StartWith, Throw </code></pre> <p><code>Iteration</code> is used by:</p> <pre><code>Generate, Range, Repeat, TakeLast, ToObservable, and the ReplaySubject&lt;T&gt; </code></pre> <p><code>TailRecursion</code> is used by:</p> <pre><code>Run </code></pre> <p><code>TimeBasedOperations</code> is used by:</p> <pre><code>Buffer, Delay, DelaySubscription, Generate, Interval, Sample, Skip, SkipLast SkipUntil, Take, TakeLast, TakeLastBuffer, TakeUntil, Throttle, TimeInterval, Timeout, Timer, Timestamp, Window </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload