I have Quartz.net working with the following definition.
[PersistJobDataAfterExecution] [DisallowConcurrentExecution] public class AdItemsJob : IJob, IInterruptableJob { public void Execute(IJobExecutionContext context) {
How I decorated Job with the DisallowConcurrentExecution attribute.
What I know about this attribute, we cannot run multiple instances of the same job at the same time. What is meant by a few examples here? Do the two AddItemsJob jobs AddItemsJob with the other key as the same instances or different instances.?
Two tasks with different keys can be performed simultaneously.?
Ishtiaq
source share