MauiWinUIScheduler(DispatcherQueue) constructor¶
Defined in
Type: MauiWinUIScheduler
Namespace: System.Reactive.Concurrency
Assembly: ReactiveMarbles.ViewModel.MAUI.dll
Applies to
net8.0-windows10.0.19041
Overloads¶
- 1.
public MauiWinUIScheduler(DispatcherQueue dispatcherQueue) - 2.
public MauiWinUIScheduler(DispatcherQueue dispatcherQueue, DispatcherQueuePriority priority)
1. Overload¶
public MauiWinUIScheduler(DispatcherQueue dispatcherQueue)
Summary: Initializes a new instance of the MauiWinUIScheduler class. Constructs a MauiWinUIScheduler 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 MauiWinUIScheduler(DispatcherQueue dispatcherQueue, DispatcherQueuePriority priority)
Summary: Initializes a new instance of the MauiWinUIScheduler class. 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. |