Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Represents an object that schedules units of work on a Dispatcher.
Inheritance Hierarchy
System.Object
System.Reactive.Concurrency.DispatcherScheduler
Namespace: System.Reactive.Concurrency
Assembly: System.Reactive.Windows.Threading (in System.Reactive.Windows.Threading.dll)
Syntax
'Declaration
Public Class DispatcherScheduler _
Implements IScheduler
'Usage
Dim instance As DispatcherScheduler
public class DispatcherScheduler : IScheduler
public ref class DispatcherScheduler : IScheduler
type DispatcherScheduler =
class
interface IScheduler
end
public class DispatcherScheduler implements IScheduler
The DispatcherScheduler type exposes the following members.
Constructors
Name | Description | |
---|---|---|
![]() |
DispatcherScheduler | Constructs an DispatcherScheduler that schedules units of work on dispatcher. |
Top
Properties
Name | Description | |
---|---|---|
![]() |
Dispatcher | Gets the dispatcher associated with the DispatcherScheduler. |
![]() ![]() |
Instance | |
![]() |
Now | Gets the scheduler's notion of current time. |
Top
Methods
Name | Description | |
---|---|---|
![]() |
Equals | (Inherited from Object.) |
![]() |
Finalize | (Inherited from Object.) |
![]() |
GetHashCode | (Inherited from Object.) |
![]() |
GetType | (Inherited from Object.) |
![]() |
MemberwiseClone | (Inherited from Object.) |
![]() |
Schedule<TState>(TState, Func<IScheduler, TState, IDisposable>) | Schedules an action to be executed on the dispatcher. |
![]() |
Schedule<TState>(TState, DateTimeOffset, Func<IScheduler, TState, IDisposable>) | |
![]() |
Schedule<TState>(TState, TimeSpan, Func<IScheduler, TState, IDisposable>) | |
![]() |
ToString | (Inherited from Object.) |
Top
Extension Methods
Name | Description | |
---|---|---|
![]() |
Schedule(Action) | Overloaded. Schedules an action to be executed. (Defined by Scheduler.) |
![]() |
Schedule(Action<Action>) | Overloaded. Schedules an action to be executed recursively. (Defined by Scheduler.) |
![]() |
Schedule(TimeSpan, Action) | Overloaded. Schedules an action to be executed after dueTime. (Defined by Scheduler.) |
![]() |
Schedule(DateTimeOffset, Action) | Overloaded. Schedules an action to be executed at dueTime. (Defined by Scheduler.) |
![]() |
Schedule(TimeSpan, Action<Action<TimeSpan>>) | Overloaded. Schedules an action to be executed recursively after each dueTime. (Defined by Scheduler.) |
![]() |
Schedule(DateTimeOffset, Action<Action<DateTimeOffset>>) | Overloaded. Schedules an action to be executed after dueTime. (Defined by Scheduler.) |
![]() |
Schedule<TState>(TState, Action<TState, Action<TState>>) | Overloaded. Schedules an action to be executed recursively. (Defined by Scheduler.) |
![]() |
Schedule<TState>(TState, TimeSpan, Action<TState, Action<TState, TimeSpan>>) | Overloaded. Schedules an action to be executed recursively after each dueTime. (Defined by Scheduler.) |
![]() |
Schedule<TState>(TState, DateTimeOffset, Action<TState, Action<TState, DateTimeOffset>>) | Overloaded. Schedules an action to be executed recursively at each dueTime. (Defined by Scheduler.) |
Top
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.