/FluentScheduler

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

Primary LanguageC#The UnlicenseUnlicense

logo

logo logo

FluentScheduler

This is a fork from the currently not really maintained 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();

Changes to the original one:

  • Fix doubble execution
  • Implement ms timing (only useful around 50ms, below that it can sometimes bug around and should not be used for tasks, where the time must be accurate)