-
- All Superinterfaces:
Invocation
public interface CronInvocation extends Invocation
Specific method invocation metadata for scheduled task.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
concurrent()
When true, next task is started even if previous didn't finish yet.String
cron()
Cron expression specifying interval invocation is scheduled with.-
Methods inherited from interface io.helidon.scheduling.Invocation
description, iteration
-
-
-
-
Method Detail
-
cron
String cron()
Cron expression specifying interval invocation is scheduled with.- Returns:
- cron expression
-
concurrent
boolean concurrent()
When true, next task is started even if previous didn't finish yet.- Returns:
- true means allowing concurrent invocation
-
-