Class LocalPlanRunner

All Implemented Interfaces:
PlanRunner

public class LocalPlanRunner extends DefaultPlanRunner
Deprecated.
Use ExecutionEngine instead
A 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
  • Constructor Details

    • 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 UI
      functionClasses - the list of Classes containing the functions (aka Keywords)
    • LocalPlanRunner

      public LocalPlanRunner(Map<String,String> properties, List<Class<?>> functionClasses)
      Deprecated.
      Parameters:
      properties - a map containing the properties that are usually set under Parameters in the UI
      functionClasses - the list of Classes containing the functions (aka Keywords)