Uses of Interface
org.voltdb.task.ActionResult
Packages that use 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
Methods in org.voltdb.task that return types with arguments of type ActionResultModifier and TypeMethodDescriptionAction.getCallback()
Interval.getCallback()
ScheduledAction.getCallback()
Method parameters in org.voltdb.task with type arguments of type ActionResultModifier 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
Constructor parameters in org.voltdb.task with type arguments of type ActionResultModifierConstructorDescriptionInterval
(long interval, TimeUnit timeUnit, Function<ActionResult, Interval> m_callback)