i need to trigger hosted service at certain time, eg. everyday at 13:00 o'clock. Mine typical ExecuteAsync method seems like that:
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
var interval = _configuration.IntervalInSeconds * 1000;
while (!stoppingToken.IsCancellationRequested)
{
// some job
await Task
.Delay(interval, stoppingToken);
}
}
When the application starts, the executeAsync method is called, and then some action is taking place every minute for example. Now i have to perform such an action only on certain hour. Is there any method to achieve such a behavior?? Is there any solution to my problem apart from rough calculating the next trigger time?? Thanks for any help.
By using the Timer method, you could run the task at a specific time, calculate the timespan between the current and target time and pass it as the dueTime parameter.
code as below:
Besides, the timer or Task.Delay() methods are more applied to executing a method at specified intervals, if you want to implement scheduled tasks, I suggest you could also try to use the Cronos package and the Cron Expressions to configure the scheduled task (reference: link).
The Cronos package is a lightweight but full-fledged library for parsing cron expressions and calculating next occurrences with time zones and daylight saving time in mind. The Cronos is an open source project sponsored by HangfireIO, and you can read detailed documentation from its GitHub repository. The details steps as below:
Install the Cronos package via NuGet.
Create a CronJobService service with the following code:
create a ScheduleJob.cs:
Register the ScheduleJob service in the ConfigureServices method.
Then the result as below: