is there a way to get the identities of the running Jobs from any class in C#?
I'm using Quartz.net
for creating jobs.
let's say i defined a job like:
IJobDetail job = JobBuilder.Create<Mailer>()
.WithIdentity("MailJob", "group1")
.UsingJobData("t2", "f2")
.Build();
My idea is to create an overview of all running jobs, for that i want to get the name of each Job, e.g here MailJob
to list it up in a table.
Thanks.