Skip to content

DispatcherScheduler class

Defined in

Namespace: System.Reactive.Concurrency Assembly: ReactiveUI.Wpf.dll Full name: System.Reactive.Concurrency.DispatcherScheduler Modifiers: public

Summary

View source

The DispatcherScheduler schedules units of work on a Dispatcher.

Applies to

net462

Class hierarchy
classDiagram
class DispatcherScheduler
class LocalScheduler
LocalScheduler <|-- DispatcherScheduler
class ISchedulerPeriodic {
    <>
}
ISchedulerPeriodic <|.. DispatcherScheduler

Inherits from: LocalScheduler

Implements: ISchedulerPeriodic

Constructors

NameSummary
.ctorConstructs a [DispatcherScheduler](# that schedules units of work on the given...

Properties

NameSummary
static InstanceGets the scheduler that schedules work on the current Dispatcher.
static CurrentGets the scheduler that schedules work on the Dispatcher for the current thread.
DispatcherGets the Dispatcher associated with the [DispatcherScheduler](#
PriorityGets the priority at which work items will be dispatched.

Methods

NameSummary
ScheduleSchedules an action to be executed on the dispatcher.
SchedulePeriodicSchedules a periodic piece of work on the dispatcher, using a DispatcherTimer object.
Inherited members

See also