The recording of the first ever ReactiveUI virtual conference is available on our YouTube Channel.

DispatcherScheduler()s

DispatcherScheduler Methods

Include Protected Members
Include Inherited Members

The DispatcherScheduler type exposes the following members.

Methods

NameDescriptionPublic methodEquals(Inherited from Object.)Protected methodFinalize(Inherited from Object.)Public methodGetHashCode(Inherited from Object.)Public methodGetType(Inherited from Object.)Protected methodMemberwiseClone(Inherited from Object.)Public methodSchedule(TState, Func<IScheduler, TState, IDisposable>)Schedules an action to be executed on the dispatcher.Public methodSchedule(TState, DateTimeOffset, Func<IScheduler, TState, IDisposable>)Public methodSchedule(TState, TimeSpan, Func<IScheduler, TState, IDisposable>)Public methodToString(Inherited from Object.)Top

Extension Methods

NameDescriptionPublic Extension MethodSchedule(Action)Overloaded. Schedules an action to be executed. (Defined by Scheduler.)Public Extension MethodSchedule(Action)Overloaded. Schedules an action to be executed recursively. (Defined by Scheduler.)Public Extension MethodSchedule(TimeSpan, Action)Overloaded. Schedules an action to be executed after dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(DateTimeOffset, Action)Overloaded. Schedules an action to be executed at dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(TimeSpan, Action<Action>)Overloaded. Schedules an action to be executed recursively after each dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(DateTimeOffset, Action<Action>)Overloaded. Schedules an action to be executed after dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(TState, Action<TState, Action>)Overloaded. Schedules an action to be executed recursively. (Defined by Scheduler.)Public Extension MethodSchedule(TState, TimeSpan, Action<TState, Action<TState, TimeSpan>>)Overloaded. Schedules an action to be executed recursively after each dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(TState, DateTimeOffset, Action<TState, Action<TState, DateTimeOffset>>)Overloaded. Schedules an action to be executed recursively at each dueTime. (Defined by Scheduler.)Top

See Also

Reference

DispatcherScheduler Class

System.Reactive.Concurrency Namespace

DispatcherScheduler Class

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

NameDescriptionPublic methodDispatcherSchedulerConstructs an DispatcherScheduler that schedules units of work on dispatcher.Top

Properties

NameDescriptionPublic propertyDispatcherGets the dispatcher associated with the DispatcherScheduler.Public propertyStatic memberInstancePublic propertyNowGets the scheduler's notion of current time.Top

Methods

NameDescriptionPublic methodEquals(Inherited from Object.)Protected methodFinalize(Inherited from Object.)Public methodGetHashCode(Inherited from Object.)Public methodGetType(Inherited from Object.)Protected methodMemberwiseClone(Inherited from Object.)Public methodSchedule(TState, Func<IScheduler, TState, IDisposable>)Schedules an action to be executed on the dispatcher.Public methodSchedule(TState, DateTimeOffset, Func<IScheduler, TState, IDisposable>)Public methodSchedule(TState, TimeSpan, Func<IScheduler, TState, IDisposable>)Public methodToString(Inherited from Object.)Top

Extension Methods

NameDescriptionPublic Extension MethodSchedule(Action)Overloaded. Schedules an action to be executed. (Defined by Scheduler.)Public Extension MethodSchedule(Action)Overloaded. Schedules an action to be executed recursively. (Defined by Scheduler.)Public Extension MethodSchedule(TimeSpan, Action)Overloaded. Schedules an action to be executed after dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(DateTimeOffset, Action)Overloaded. Schedules an action to be executed at dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(TimeSpan, Action<Action>)Overloaded. Schedules an action to be executed recursively after each dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(DateTimeOffset, Action<Action>)Overloaded. Schedules an action to be executed after dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(TState, Action<TState, Action>)Overloaded. Schedules an action to be executed recursively. (Defined by Scheduler.)Public Extension MethodSchedule(TState, TimeSpan, Action<TState, Action<TState, TimeSpan>>)Overloaded. Schedules an action to be executed recursively after each dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(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.

See Also

Reference

System.Reactive.Concurrency Namespace

DispatcherScheduler Properties

Include Protected Members
Include Inherited Members

The DispatcherScheduler type exposes the following members.

Properties

NameDescriptionPublic propertyDispatcherGets the dispatcher associated with the DispatcherScheduler.Public propertyStatic memberInstancePublic propertyNowGets the scheduler's notion of current time.Top

See Also

Reference

DispatcherScheduler Class

System.Reactive.Concurrency Namespace

DispatcherScheduler Constructor

Constructs an DispatcherScheduler that schedules units of work on dispatcher.

Namespace:  System.Reactive.Concurrency
Assembly:  System.Reactive.Windows.Threading (in System.Reactive.Windows.Threading.dll)

Syntax

'Declaration
Public Sub New ( _
    dispatcher As Dispatcher _
)
'Usage
Dim dispatcher As Dispatcher

Dim instance As New DispatcherScheduler(dispatcher)
public DispatcherScheduler(
    Dispatcher dispatcher
)
public:
DispatcherScheduler(
    Dispatcher^ dispatcher
)
new : 
        dispatcher:Dispatcher -> DispatcherScheduler
public function DispatcherScheduler(
    dispatcher : Dispatcher
)

Parameters

See Also

Reference

DispatcherScheduler Class

System.Reactive.Concurrency Namespace