DispatcherQueueScheduler(DispatcherQueue) constructor¶
Defined in
Type: DispatcherQueueScheduler
Namespace: System.Reactive.Concurrency
Assembly: ReactiveUI.Maui.dll
Applies to
net10.0-windows10.0.19041, net10.0-windows10.0.19041, net9.0-windows10.0.19041, net9.0-windows10.0.19041, net8.0-windows10.0.19041
Overloads¶
- 1.
public DispatcherQueueScheduler(DispatcherQueue dispatcherQueue) - 2.
public DispatcherQueueScheduler(DispatcherQueue dispatcherQueue, DispatcherQueuePriority priority)
1. Overload¶
public DispatcherQueueScheduler(DispatcherQueue dispatcherQueue)
Summary: Constructs a DispatcherQueueScheduler that schedules units of work on the given DispatcherQueue.
Parameters
| Name | Type | Description |
|---|---|---|
dispatcherQueue | DispatcherQueue | DispatcherQueue to schedule work on. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException | dispatcherQueue is null. |
2. Overload¶
public DispatcherQueueScheduler(DispatcherQueue dispatcherQueue, DispatcherQueuePriority priority)
Summary: Constructs a DispatcherScheduler that schedules units of work on the given DispatcherQueue at the given priority.
Parameters
| Name | Type | Description |
|---|---|---|
dispatcherQueue | DispatcherQueue | DispatcherQueue to schedule work on. |
priority | DispatcherQueuePriority | Priority at which units of work are scheduled. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException | dispatcherQueue is null. |