Skip to content

Quartz extension which allows to schedule jobs with lambda syntax.

License

Notifications You must be signed in to change notification settings

midianok/nuget-quartz-lambda

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Quartz.Lambda

Quartz extension which allows to schedule jobs with lambda syntax.

Usage example

scheduler.ScheduleJob(() => Console.WriteLine("With TriggerBuilder"), 
    builder => builder.StartNow()
    .WithSimpleSchedule(x => x
        .WithIntervalInSeconds(10)
        .RepeatForever()));

scheduler.ScheduleJob(() => Console.WriteLine("With int delay and interval"), 0, 10);

scheduler.ScheduleJob(() => Console.WriteLine("And also with TimeSpan"), TimeSpan.FromSeconds(0), TimeSpan.FromSeconds(10));

About

Quartz extension which allows to schedule jobs with lambda syntax.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages