Top "Quartz.net" questions

Quartz.

Quartz .Net - Meaning of BigInt DateTime

we've used sql server as our persisted data store for Quartz.net. I'd like to write some queries looking @ the …

tsql quartz.net
Cron expression every 50 seconds in Quartz

I'm running my Jobs using Quartz with a cron expression every 50 seconds: Cron_Expression = "0/50 * * * * ?" What happens is that my job …

java quartz-scheduler quartz.net
Refire quartz.net trigger after 15 minutes if job fails with exception

I have searched for an answer on how to retrigger a job after a ceratin amount of time, if the …

triggers quartz.net
How do I switch from Log4Net to NLog in Quartz.Net?

My company's standard logging tool is NLog. I'm trying to introduce Quartz.net and was asked if it could use …

log4net quartz.net nlog common.logging
How can I set the number of threads in the Quartz.NET threadpool?

I've seen in this tutorial section of the Quartz.NET documentation that it should be possible to define the maximum …

.net quartz.net
How to get executing job's name?

In my application I have a static class (singleton) that needs to be initialized with some environmental variables that's used …

quartz.net
How to get details of all scheduled jobs and triggers in Quartz.NET c#

I have to create administration page of all scheduled jobs and triggers. How can i get details of running jobs …

c# quartz-scheduler quartz.net
Quartz.Net Job Storage Query

I'm creating a scheduler using Quartz.NET in the current project. In my case all the jobs that has to …

quartz.net
What is exactly mean by 'DisallowConcurrentExecution' in Quartz.net

I have a Quartz.net Job with the following definition. [PersistJobDataAfterExecution] [DisallowConcurrentExecution] public class AdItemsJob : IJob, IInterruptableJob { public void Execute(…

c# quartz.net job-scheduling
how to get the next scheduled trigger fire time in Quartz.net

This is my first Quartz.net project. I have done my basic homework and all my cron triggers fire correctly …

scheduling quartz.net crontrigger