DispatcherQueueSequencer.ScheduleOnDispatcher(Action, TimeSpan) method¶
Defined in
Type: DispatcherQueueSequencer
Namespace: ReactiveUI.Primitives.Reactive.Concurrency
Assembly: ReactiveUI.Primitives.WinUI.Reactive.dll
Applies to
net10.0-windows10.0.19041, net9.0-windows10.0.19041, net8.0-windows10.0.19041
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.