Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,15 @@ class LifecycleNodeInterface
public:
enum class CallbackReturn : uint8_t
{
/// The callback completed successfully.
SUCCESS = lifecycle_msgs::msg::Transition::TRANSITION_CALLBACK_SUCCESS,

/// The callback completed, but the requested transition could not
/// be completed. The node returns to a stable lifecycle state.
Comment thread
fujitatomoya marked this conversation as resolved.
Outdated
FAILURE = lifecycle_msgs::msg::Transition::TRANSITION_CALLBACK_FAILURE,

/// An unexpected error occurred. The node enters the
Comment thread
fujitatomoya marked this conversation as resolved.
Outdated
/// error-processing state.
ERROR = lifecycle_msgs::msg::Transition::TRANSITION_CALLBACK_ERROR
};

Expand Down