Skip to content

ControlScheduler class

Defined in

Namespace: System.Reactive.Concurrency Assembly: ReactiveUI.Winforms.dll Full name: System.Reactive.Concurrency.ControlScheduler Modifiers: public

Summary

View source

        Represents an object that schedules units of work on the message loop associated with a Windows Forms control.
        

Applies to

net462, net481

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

Inherits from: LocalScheduler

Implements: ISchedulerPeriodic

Constructors

NameSummary
.ctorConstructs a ControlScheduler that schedules units of work on the message loop associated with the specified Windows Forms control.

Properties

NameSummary
ControlGets the control associated with the ControlScheduler.

Methods

NameSummary
ScheduleSchedules an action to be executed on the message loop associated with the control.
SchedulePeriodicSchedules a periodic piece of work on the message loop associated with the control, using a Windows Forms Timer object.
Inherited members