Class Delivery::Description
Defined in File Delivery.hpp
Nested Relationships
This class is a nested type of Class Delivery.
Inheritance Relationships
Base Type
public rmf_task::Task::Description
(Class Task::Description)
Class Documentation
-
class Description : public rmf_task::Task::Description
Public Types
-
using Start = rmf_traffic::agv::Planner::Start
Public Functions
-
virtual Task::ConstModelPtr make_model(rmf_traffic::Time earliest_start_time, const Parameters ¶meters) const final
Generate a Model for the task based on the unique traits of this description
- Parameters:
earliest_start_time – [in] The earliest time this task should begin execution. This is usually the requested start time for the task.
parameters – [in] The parameters that describe this AGV
-
virtual Info generate_info(const State &initial_state, const Parameters ¶meters) const final
Generate a plain text info description for the task, given the predicted initial state and the task planning parameters.
- Parameters:
initial_state – [in] The predicted initial state for the task
parameters – [in] The task planning parameters
-
std::size_t pickup_waypoint() const
Get the pickup waypoint in this request.
-
std::string pickup_from_dispenser() const
Get the name of the dispenser that we’re picking up from.
-
rmf_traffic::Duration pickup_wait() const
Get the duration over which delivery items are loaded.
-
std::size_t dropoff_waypoint() const
Get the dropoff waypoint in this request.
-
std::string dropoff_to_ingestor() const
Get the name of the ingestor that we’re dropping off to.
-
rmf_traffic::Duration dropoff_wait() const
Get the duration over which delivery items are unloaded.
-
const Payload &payload() const
Get the payload that is being delivered.
Public Static Functions
-
static Task::ConstDescriptionPtr make(std::size_t pickup_waypoint, rmf_traffic::Duration pickup_duration, std::size_t dropoff_waypoint, rmf_traffic::Duration dropoff_duration, Payload payload, std::string pickup_from_dispenser = "", std::string dropoff_to_ingestor = "")
Generate the description for this request.
-
using Start = rmf_traffic::agv::Planner::Start