Class: Roby::Test::RunPlanners::PlanningHandler

Inherits:
Object
  • Object
show all
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

Instance Method Details

#finished?Boolean

Whether planning is finished for the given tasks

This is called within a propagation context

Returns:

  • (Boolean)

Raises:

  • (NotImplementedError)


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

Raises:

  • (NotImplementedError)


89
90
91
# File 'lib/roby/test/run_planners.rb', line 89

def start(tasks)
    raise NotImplementedError
end