[]
Schedules the specified synchronous action to execute after the configured delay, cancelling any previously pending execution.
public void Execute(Action action)
| Type | Name | Description |
|---|---|---|
| Action | action | The synchronous action to execute. |
Schedules the specified asynchronous action to execute after the configured delay, cancelling any previously pending execution.
public void Execute(Func<Task> action)
| Type | Name | Description |
|---|---|---|
| Func<Task> | action | The asynchronous action to execute. |