Interface IReactiveUIInstance
- Namespace
- ReactiveUI.Builder
- Assembly
- ReactiveUI.dll
IReactiveUIInstance.
public interface IReactiveUIInstance : IAppInstance
- Inherited Members
- Extension Methods
-
BuilderMixins.WithInstance<T1, T2, T3, T4, T5>(IReactiveUIInstance, Action<T1?, T2?, T3?, T4?, T5?>)
Properties
MainThreadScheduler
Gets a scheduler used to schedule work items that should be run "on the UI thread". In normal mode, this will be DispatcherScheduler, and in Unit Test mode this will be Immediate, to simplify writing common unit tests.
IScheduler? MainThreadScheduler { get; }
Property Value
- IScheduler
TaskpoolScheduler
Gets the a the scheduler used to schedule work items to run in a background thread. In both modes, this will run on the TPL Task Pool.
IScheduler? TaskpoolScheduler { get; }
Property Value
- IScheduler