Метод | Описание | |
---|---|---|
Repeat ( this composer, System.TimeSpan interval, Action |
Retry a task composition using the specified retry policy
|
|
Repeat ( this composer, System.TimeSpan initialDelay, System.TimeSpan interval, Action |
Retry a task composition using the specified retry policy
|
|
Repeat ( this composer, int millisecondsInterval, Action |
Retry a task composition using the specified retry policy
|
|
Repeat ( this composer, int millisecondsInitialDelay, int millisecondsInterval, Action |
Retry a task composition using the specified retry policy
|
Метод | Описание | |
---|---|---|
Attempt ( Composer composer, System.TimeSpan interval, Action |
public static Repeat ( this composer, System.TimeSpan interval, Action |
||
composer | this | The task composer |
interval | System.TimeSpan | The interval between each repetition |
callback | Action |
The task composition callback |
repeatCancellationToken | A cancellation token for the repeat-portion of the task composer | |
Результат | Composer |
public static Repeat ( this composer, System.TimeSpan initialDelay, System.TimeSpan interval, Action |
||
composer | this | The task composer |
initialDelay | System.TimeSpan | The initial delay before the first execution |
interval | System.TimeSpan | The interval between each repetition |
callback | Action |
The task composition callback |
repeatCancellationToken | A cancellation token for the repeat-portion of the task composer | |
Результат | Composer |
public static Repeat ( this composer, int millisecondsInterval, Action |
||
composer | this | The task composer |
millisecondsInterval | int | |
callback | Action |
The task composition callback |
repeatCancellationToken | ||
Результат | Composer |
public static Repeat ( this composer, int millisecondsInitialDelay, int millisecondsInterval, Action |
||
composer | this | The task composer |
millisecondsInitialDelay | int | The initial delay before the first execution in milliseconds |
millisecondsInterval | int | |
callback | Action |
The task composition callback |
repeatCancellationToken | ||
Результат | Composer |