https://github.com/fluentscheduler/fluentscheduler
Automated job scheduler with fluent interface for the .NET platform.
https://github.com/fluentscheduler/fluentscheduler
fluent scheduler
Last synced: 6 months ago
JSON representation
Automated job scheduler with fluent interface for the .NET platform.
- Host: GitHub
- URL: https://github.com/fluentscheduler/fluentscheduler
- Owner: fluentscheduler
- License: other
- Created: 2012-08-07T18:55:35.000Z (almost 14 years ago)
- Default Branch: version-5
- Last Pushed: 2023-01-30T10:52:10.000Z (over 3 years ago)
- Last Synced: 2025-04-07T00:12:48.886Z (about 1 year ago)
- Topics: fluent, scheduler
- Language: C#
- Homepage:
- Size: 1.7 MB
- Stars: 2,702
- Watchers: 137
- Forks: 413
- Open Issues: 47
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FluentScheduler
**Important: this documentation refers to the version 5 of the library which is currently deprecated.
Check the current version [here](https://github.com/fluentscheduler/FluentScheduler).**
Automated job scheduler with fluent interface for the .NET platform.
```cs
JobManager.Initialize();
JobManager.AddJob(
() => Console.WriteLine("5 minutes just passed."),
s => s.ToRunEvery(5).Minutes()
);
```
**Learning?**
Check the [documentation]!
**Comments? Problems? Suggestions?**
Check the [issues]!
**Want to help?**
Check the [help wanted] label!
[master branch]: https://github.com/fluentscheduler/FluentScheduler
[documentation]: https://fluentscheduler.github.io/v5
[issues]: https://github.com/fluentscheduler/FluentScheduler/issues
[help wanted]: https://github.com/fluentscheduler/FluentScheduler/labels/help%20wanted