i have some jobs to fire by three triggers(four jobs to every trigger) i want one specified job to fire always FIRST, rest can fire at random order. should i implement different trigger? is there a way to do something with priorities? i already fire them in one thread
org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
org.quartz.threadPool.threadCount = 1
and
newTrigger().withSchedule(
CronScheduleBuilder.cronSchedule(exp))
.withPriority(getPriorityForOperation(cronOperation))
.build();
where priority for first job is different than for the rest, but anyway it runs at random order