DispatcherSequencer.ScheduleOnDispatcher(Action, TimeSpan) method¶
Defined in
Type: DispatcherSequencer
Namespace: ReactiveUI.Primitives.Reactive.Concurrency
Assembly: ReactiveUI.Primitives.Wpf.Reactive.dll
Applies to
net10.0-windows7.0, net9.0-windows7.0, net8.0-windows7.0, net462, net481
protected override IDisposable ScheduleOnDispatcher(Action work, TimeSpan dueTime)
Inherited documentation
These docs were inherited from CoalescingDispatchScheduler. The member doesn't override them on this type.
Summary:
Runs work on the dispatcher after dueTime. The default marshals the wait
onto the shared timer, then re-queues the work onto the dispatcher when it is due. Platforms with a native
UI-thread timer override this to run the work directly on the dispatcher thread.
Parameters
| Name | Type | Description |
|---|---|---|
work | Action | Callback to invoke on the dispatcher thread when due. |
dueTime | TimeSpan | Relative time after which to invoke work. |
Returns: IDisposable -- The disposable used to cancel the delayed dispatch.