How to get details of all scheduled jobs and triggers in Quartz.NET c#
I have to create administration page of all scheduled j开发者_开发技巧obs and triggers. How can i get details of running jobs and triggers in Quartz.NET? Can I pause/stop or update jobs? Is there any sample code?
Here is how you would go about it using the StdSchedulerFactory
ISchedulerFactory schedFact = new StdSchedulerFactory();
foreach (IScheduler scheduler in schedFact.AllSchedulers)
{
var scheduler1 = scheduler;
foreach (var jobDetail in from jobGroupName in scheduler1.JobGroupNames
from jobName in scheduler1.GetJobNames(jobGroupName)
select scheduler1.GetJobDetail(jobName, jobGroupName))
{
//Get props about job from jobDetail
}
foreach (var triggerDetail in from triggerGroupName in scheduler1.TriggerGroupNames
from triggerName in scheduler1.GetTriggerNames(triggerGroupName)
select scheduler1.GetTrigger(triggerName, triggerGroupName))
{
//Get props about trigger from triggerDetail
}
}
Here an open project that does just this. The project should have all the code you need to create you own, or you can just use the open source project.
Web Based admin page for Quartz.net
- Allow registering of existing Quartz.net installations
- Allow viewing of Jobs and Triggers
- Allow scheduling of Jobs including editing JobDataMaps
- Allow viewing of calendars
- Allow viewing of trigger fire times
- Silverlight based timeline showing upcoming schedules
精彩评论