Is there available any open source admin interface to add/edit/delete jobs & triggers in QUARTZ.NET scheduler?
标签:
quartz.net
相关问题
- MYSQL 5.5 Drop Primary Key
- Quartz.Net cron trigger to schedule a job every 45
- The type initializer for 'Quartz.Impl.StdSched
- What is exactly mean by 'DisallowConcurrentExe
- Send daily notification mail from asp.net mvc web
相关文章
- quartz.net 如何实现动态job ,appdomain 域卸载问题
- quartz.net 执行时,并发执行了多次
- Recover from trigger ERROR state after Job constru
- How to make Quartz.NET process synchronously?
- ASP.NET MVC: How to create a usable UrlHelper inst
- Testing for IInterruptableJob
- How do I force a quartz.net job to restart interva
- Connecting Quartz to MS Sql Server
Check out this blog. He describes a few that worked for him and few others he investigated.
Once you know how to use the Quartz API (Example 12 - Client really helped me), it's not too difficult to extract whatever information you want.
I combined this jquery plugin with my c# code and a hidden field. Worked well for me: I used this: http://shawnchin.github.com/jquery-cron/
It seems that currently CrystalQuartz is the best fitting solution here
I recently published new alternative web UI for Quartz.NET. You can manage jobs, triggers, calendars and most of the API which IScheduler provide. It is pluggable into existing OWIN and ASP.NET Core application or it creates embedded web server on it own. You can put strongly typed values to JobDataMap or edit existing JobDataMap of job or trigger.
https://github.com/jlucansky/Quartzmin
Check out this other question: Combining Quartz.Net with UI.
QuartzNetWebConsole and crystal-quartz seem to be more active projects. Both are open-source and have NuGet packages available.