How does DeltaSpike @Schedule wait finish before a new execution?

179 Views Asked by At

I am using this lib DeltaSpike Schedule to create cron tasks.

My task runs every minute, but I do not know how set Schedule to wait complete the old task.

@Scheduled(cronExpression = "0 * * * * ?")
public class WaiterRideTask implements Job {
}

If a task delays more than 1 minute, then other task is created yet.

1

There are 1 best solutions below

0
On

Thanks Dar Whi. This solved my problem: @DisallowConcurrentExecution