Package step.localrunner
Class LocalPlanRunner
- java.lang.Object
-
- step.core.plans.runner.DefaultPlanRunner
-
- step.localrunner.LocalPlanRunner
-
- All Implemented Interfaces:
PlanRunner
public class LocalPlanRunner extends DefaultPlanRunner
Deprecated.UseExecutionEngine
insteadA runner that runs plans and functions locally. The list of classes containing functions has to be passed to the constructor- Author:
- Jérôme Comte
-
-
Field Summary
-
Fields inherited from class step.core.plans.runner.DefaultPlanRunner
properties
-
-
Constructor Summary
Constructors Constructor Description LocalPlanRunner(Class<?>... functionClasses)
Deprecated.LocalPlanRunner(List<Class<?>> functionClasses)
Deprecated.LocalPlanRunner(Map<String,String> properties, Class<?>... functionClasses)
Deprecated.LocalPlanRunner(Map<String,String> properties, List<Class<?>> functionClasses)
Deprecated.
-
-
-
Constructor Detail
-
LocalPlanRunner
public LocalPlanRunner(Class<?>... functionClasses)
Deprecated.- Parameters:
functionClasses
- functionClasses the list of Classes containing the functions (aka Keywords)
-
LocalPlanRunner
public LocalPlanRunner(List<Class<?>> functionClasses)
Deprecated.- Parameters:
functionClasses
- functionClasses the list of Classes containing the functions (aka Keywords)
-
LocalPlanRunner
public LocalPlanRunner(Map<String,String> properties, Class<?>... functionClasses)
Deprecated.- Parameters:
properties
- a map containing the properties that are usually set under Parameters in the UIfunctionClasses
- the list of Classes containing the functions (aka Keywords)
-
-