Skip to content

ExtraTNT/FluentScheduler

 
 

Repository files navigation

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)

About

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

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%