MauiMacScheduler.Schedule(TState, Func) method¶
Defined in
Type: MauiMacScheduler
Namespace: System.Reactive.Concurrency
Assembly: ReactiveMarbles.ViewModel.MAUI.dll
Applies to
net8.0-ios17.2, net8.0-maccatalyst17.2
Overloads¶
- 1.
public IDisposable Schedule<TState>(TState state, Func<IScheduler, TState, IDisposable> action) - 2.
public IDisposable Schedule<TState>(TState state, DateTimeOffset dueTime, Func<IScheduler, TState, IDisposable> action) - 3.
public IDisposable Schedule<TState>(TState state, TimeSpan dueTime, Func<IScheduler, TState, IDisposable> action)
1. Overload¶
public IDisposable Schedule<TState>(TState state, Func<IScheduler, TState, IDisposable> action)
Inherited documentation
These docs were inherited from IScheduler. The member doesn't override them on this type.
Type parameters
| Name | Description |
|---|---|
TState | -- |
Parameters
| Name | Type | Description |
|---|---|---|
state | TState | -- |
action | Func | -- |
Returns: IDisposable
2. Overload¶
public IDisposable Schedule<TState>(TState state, DateTimeOffset dueTime, Func<IScheduler, TState, IDisposable> action)
Inherited documentation
These docs were inherited from IScheduler. The member doesn't override them on this type.
Type parameters
| Name | Description |
|---|---|
TState | -- |
Parameters
| Name | Type | Description |
|---|---|---|
state | TState | -- |
dueTime | DateTimeOffset | -- |
action | Func | -- |
Returns: IDisposable
3. Overload¶
public IDisposable Schedule<TState>(TState state, TimeSpan dueTime, Func<IScheduler, TState, IDisposable> action)
Inherited documentation
These docs were inherited from IScheduler. The member doesn't override them on this type.
Type parameters
| Name | Description |
|---|---|
TState | -- |
Parameters
| Name | Type | Description |
|---|---|---|
state | TState | -- |
dueTime | TimeSpan | -- |
action | Func | -- |
Returns: IDisposable