logo

Important note: This documentation refers to the upcoming version of the library, that's still unstable.

Welcome to the documentation for FluentScheduler, an 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();

Make sure to check the GitHub repository for community discussion and its source code.