Uses of Interface
org.voltdb.task.ActionResult
Package
Description
Provides classes and interfaces for supporting task creation for execution of procedures and custom java on a
schedule
-
Uses of ActionResult in org.voltdb.task
Modifier and TypeMethodDescriptionAction.getCallback()
Interval.getCallback()
ScheduledAction.getCallback()
Modifier and TypeMethodDescriptionstatic Action
Action.callback
(Function<ActionResult, Action> callback) Create anAction
which causes thecallback
to be invoked.static ScheduledAction
ScheduledAction.callback
(long interval, TimeUnit timeUnit, Function<ActionResult, ScheduledAction> callback) static Action
Action.procedureCall
(Function<ActionResult, Action> callback, String procedure, Object... procedureParameters) Create anAction
which executes a procedure with given parametersstatic ScheduledAction
ScheduledAction.procedureCall
(long interval, TimeUnit timeUnit, Function<ActionResult, ScheduledAction> callback, String procedure, Object... procedureParameters) Create aScheduledAction
which executes a procedure with given parameters afterinterval
ModifierConstructorDescriptionInterval
(long interval, TimeUnit timeUnit, Function<ActionResult, Interval> m_callback)