Uses of Interface
io.quarkus.scheduler.ScheduledExecution
-
Uses of ScheduledExecution in io.quarkus.scheduler
Methods in io.quarkus.scheduler that return ScheduledExecutionModifier and TypeMethodDescriptionFailedExecution.getExecution()SkippedExecution.getExecution()SuccessfulExecution.getExecution()Methods in io.quarkus.scheduler with parameters of type ScheduledExecutionModifier and TypeMethodDescriptionbooleanScheduled.ApplicationNotRunning.test(ScheduledExecution execution) booleanScheduled.Never.test(ScheduledExecution execution) booleanScheduled.SkipPredicate.test(ScheduledExecution execution) Method parameters in io.quarkus.scheduler with type arguments of type ScheduledExecutionModifier and TypeMethodDescriptionScheduler.JobDefinition.setAsyncTask(Class<? extends Function<ScheduledExecution, io.smallrye.mutiny.Uni<Void>>> asyncTaskClass) The class must either represent a CDI bean or declare a public no-args constructor.Scheduler.JobDefinition.setAsyncTask(Function<ScheduledExecution, io.smallrye.mutiny.Uni<Void>> asyncTask) default Scheduler.JobDefinitionScheduler.JobDefinition.setTask(Class<? extends Consumer<ScheduledExecution>> taskClass) The class must either represent a CDI bean or declare a public no-args constructor.Scheduler.JobDefinition.setTask(Class<? extends Consumer<ScheduledExecution>> consumerClass, boolean runOnVirtualThread) The class must either represent a CDI bean or declare a public no-args constructor.default Scheduler.JobDefinitionScheduler.JobDefinition.setTask(Consumer<ScheduledExecution> task) Scheduler.JobDefinition.setTask(Consumer<ScheduledExecution> task, boolean runOnVirtualThread) Configures the task to schedule.Constructors in io.quarkus.scheduler with parameters of type ScheduledExecutionModifierConstructorDescriptionFailedExecution(ScheduledExecution execution) FailedExecution(ScheduledExecution execution, Throwable exception) SkippedExecution(ScheduledExecution execution) SkippedExecution(ScheduledExecution execution, String detail) SuccessfulExecution(ScheduledExecution execution)