Closed querdenker2k closed 1 year ago
change timer runnable to consumer(JRuleTimer) to reschedule timers, like this
createTimer(ZonedDateTime.now().plusSeconds(5), t -> { if (something) { t.reschedule(ZonedDateTime.now().plusSeconds(5)); } }
i am not really sure if this is the best approach, but i didn't see another one.
change timer runnable to consumer(JRuleTimer) to reschedule timers, like this