-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Human-readable cron expressions #15
Comments
project out there that does this already that you might be able to leverage http://www.geekytidbits.com/cron-expression-descriptor-demo/ |
Looks good! IIRC there's something like this already embedded in Quartz in the CronExpression class. If you're interested, would you take a look? Cheers |
In Quartz there is a way that helps you get the actual Cron Expression string but not into human readable text that I'm aware of. CronScheduleBuilder csb = CronScheduleBuilder ICronTrigger trigger = (ICronTrigger)TriggerBuilder string cronExpression = trigger.CronExpressionString; |
CronExpression.GetExpressionSummary() does this, but it's nowhere near as pretty as the library you mention. We should merge that library, including of course its license text and a link to its home page. |
Yeah, would make this tool a lot more powerful |
Looking forward to your pull request ;-) |
Show a human-readable rendering of cron expressions.
See Quartz.CronExpression
The text was updated successfully, but these errors were encountered: