We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d254071 commit 07b3babCopy full SHA for 07b3bab
README.md
@@ -44,6 +44,13 @@ public class TestScheduler
44
{
45
Debug.WriteLine($"Task..............Cron_{time}_{task.Method.Name}_{taskExecutor.Tasks.Count}");
46
}
47
+
48
+ // this task will begin execution after 100 seconds of startup
49
+ [Cron("0/1 * * * * *", 100, CronStringFormat.WithSeconds)]
50
+ public static void DeferTask1()
51
+ {
52
+ Debug.WriteLine($"Task..............5555_{DateTime.Now}");
53
+ }
54
55
```
56
0 commit comments