CRON Thread
PerigeeApplication.ApplicationNoInit("ThreadDemo", (c) =>
{
c.AddCRON("Repeat", "*/1 * * * *", (ct, l) => {
l.LogInformation("Starting again, every minute!");
});
});Last updated

PerigeeApplication.ApplicationNoInit("ThreadDemo", (c) =>
{
c.AddCRON("Repeat", "*/1 * * * *", (ct, l) => {
l.LogInformation("Starting again, every minute!");
});
});Last updated