Class: Roby::Test::RunPlanners::PlanningHandler
- Defined in:
- lib/roby/test/run_planners.rb
Overview
Interface for a planning handler for #roby_run_planner
This class is only used to describe the required interface. See ActionPlanningHandler for an example
Instance Method Summary collapse
-
#finished? ⇒ Boolean
Whether planning is finished for the given tasks.
-
#start(tasks) ⇒ Object
Start planning these tasks.
Instance Method Details
#finished? ⇒ Boolean
Whether planning is finished for the given tasks
This is called within a propagation context
96 97 98 |
# File 'lib/roby/test/run_planners.rb', line 96 def finished? raise NotImplementedError end |
#start(tasks) ⇒ Object
Start planning these tasks
This is called within a propagation context
89 90 91 |
# File 'lib/roby/test/run_planners.rb', line 89 def start(tasks) raise NotImplementedError end |