Hi I have a timer like this
@Schedule(second = "0", minute = "*", hour = "*", info =
"myperiodicjob")
public void myPeriodicJob() {
}
sometimes this method can hang, and then subsequent executions are blocked
until the previous running one finishes.
is there any way to change this behaviour? allowing other executions to
happen even if the previous ones are not completed?
TIA
Leo
