Class DefaultInvoker
- java.lang.Object
-
- io.quarkus.scheduler.common.runtime.DefaultInvoker
-
- All Implemented Interfaces:
ScheduledInvoker
public abstract class DefaultInvoker extends Object implements ScheduledInvoker
-
-
Constructor Summary
Constructors Constructor Description DefaultInvoker()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description CompletionStage<Void>invoke(ScheduledExecution execution)protected abstract CompletionStage<Void>invokeBean(ScheduledExecution execution)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.quarkus.scheduler.common.runtime.ScheduledInvoker
isBlocking
-
-
-
-
Method Detail
-
invoke
public CompletionStage<Void> invoke(ScheduledExecution execution) throws Exception
- Specified by:
invokein interfaceScheduledInvoker- Returns:
- the result
- Throws:
Exception
-
invokeBean
protected abstract CompletionStage<Void> invokeBean(ScheduledExecution execution) throws Exception
- Throws:
Exception
-
-