Skip to content

Latest commit

 

History

10 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EasySchedule

Tired of setting up schedulers? This is probably the easiest alternative, made with Asp.NET in mind.

How to use

using EasySchedule;

namespace YourNamespace;

public class ClassYouHaveMethodsIn
{
  [Schedule("0 * * * * *")] // Runs every minute at 0s
  public void MethodToSchedule(){
    Console.WriteLine($"{DateTime.Now:HH:mm:ss.ffff}: It did the thing");
  }
}

Planned features

  • RunOnce property for the attribute
  • Optional retry configuration

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages