Skip to content

EventLoopScheduler class

Defined in

Namespace: System.Reactive.Concurrency Assembly: System.Reactive.dll Full name: System.Reactive.Concurrency.EventLoopScheduler Modifiers: public sealed

Summary

        Represents an object that schedules units of work on a designated thread.
        

Applies to

netstandard2.0

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

Inherits from: LocalScheduler

Implements: ISchedulerPeriodic, IDisposable

Constructors

NameSummary
.ctorCreates an object that schedules units of work on a designated thread.

Methods

NameSummary
ScheduleSchedules an action to be executed after dueTime.
SchedulePeriodicSchedules a periodic piece of work on the designated thread.
StartStopwatchStarts a new stopwatch object.
DisposeEnds the thread associated with this scheduler. All remaining work in the scheduler queue is abandoned.
Inherited members