public List<OperableTrigger> acquireNextTriggers(long noLaterThan, int maxCount, long timeWindow)
throws JobPersistenceException {
try {
return realJobStore.acquireNextTriggers(noLaterThan, maxCount, timeWindow);
} catch (RejoinException e) {
throw new JobPersistenceException("Trigger acquisition failed due to client rejoin", e);
}
}