Skip to content

Latest commit

 

History

History
51 lines (39 loc) · 1.53 KB

File metadata and controls

51 lines (39 loc) · 1.53 KB

logo

badge badge

FluentScheduler

Automated job scheduler with fluent interface for the .NET platform.

var schedule = new Schedule(
    () => Console.WriteLine("5 minutes just passed."),
    run => run.Every(5).Minutes()
);

schedule.Start();

Learning?
Check the documentation!

Comments? Problems? Suggestions?
Check the issues!

Want to help?
Check the help wanted label!

Looking for the now deprecated version 5 of the library?
Check the version-5 branch!