Method | Description | |
---|---|---|
ScheduleEvery ( this session, System.TimeSpan timeSpan, Task>.Func |
Schedules a task to be executed repeatedly in a given interval.
|
|
ScheduleEvery ( this session, System.TimeSpan timeSpan, string name, Task>.Func |
Schedules a task to be executed repeatedly in a given interval.
|
Method | Description | |
---|---|---|
Schedule ( IMessageSession session, |
||
ScheduleEvery ( this session, System.TimeSpan timeSpan, System.Action task ) : void | ||
ScheduleEvery ( this session, System.TimeSpan timeSpan, string name, System.Action task ) : void |
public static ScheduleEvery ( this session, System.TimeSpan timeSpan, Task>.Func |
||
session | this | The session which allows you to perform message operation. |
timeSpan | System.TimeSpan | The interval to repeatedly execute the |
task | Task>.Func | The async function to execute. |
return | Task |
public static ScheduleEvery ( this session, System.TimeSpan timeSpan, string name, Task>.Func |
||
session | this | The session which allows you to perform message operation. |
timeSpan | System.TimeSpan | The interval to repeatedly execute the |
name | string | The name to used for logging the task being executed. |
task | Task>.Func | The async function to execute. |
return | Task |