Releases: yisoft-dotnet/crontab
Releases · yisoft-dotnet/crontab
v1.3.2
v1.3.1
add defer
option in seconds. It is useful when the task is started for the first time.
sample:
public class TestScheduler
{
// this task will begin execution after 100 seconds of startup
[Cron("0/1 * * * * *", 100, CronStringFormat.WithSeconds)]
public static void DeferTask1()
{
Debug.WriteLine($"Task..............5555_{DateTime.Now}");
}
}