bi01081993 / ncron

Automatically exported from code.google.com/p/ncron
Apache License 2.0
0 stars 0 forks source link

minute wise schedule #22

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
for every minute schedule is it possible with ncron?

Original issue reported on code.google.com by jvhnm4b...@gmail.com on 4 Jan 2012 at 10:55

GoogleCodeExporter commented 8 years ago
Using a crontab expression:
service.At("* * * * *").Run<TheJob>();

Using a lambda expression:
service.At(dt => dt.AddMinutes(1)).Run<TheJob>();

Original comment by j...@malamute.dk on 4 Jan 2012 at 1:36