Job
{@link Trigger}s
If not explicitly set, the default value is false - this method sets the value to true.
false
true
360361362363364365366367368369370
JobBuilder builder = JobBuilder.newJob(jobClass) .withIdentity(name, group); if (durableJob) { builder = builder.storeDurably(); } if (recoverableJob) { builder = builder.requestRecovery(); }
348349350351352353354355356357358
342343344345346347348349350351352