Python YASMIN (Yet Another State MachINe)
|
Variables | |
str | SUCCEED = "succeeded" |
Indicates that an operation has completed successfully. | |
str | ABORT = "aborted" |
Indicates that an operation was aborted before completion. | |
str | CANCEL = "canceled" |
Indicates that an operation was canceled by the user or system. | |
str | TIMEOUT = "timeout" |
Indicates that an operation has timed out and did not complete in a timely manner. | |
This module defines a set of status codes that can be used to represent the outcome of various operations within the application. These codes can be utilized for error handling, logging, and user feedback.
str yasmin_ros.basic_outcomes.ABORT = "aborted" |
Indicates that an operation was aborted before completion.
str yasmin_ros.basic_outcomes.CANCEL = "canceled" |
Indicates that an operation was canceled by the user or system.
str yasmin_ros.basic_outcomes.SUCCEED = "succeeded" |
Indicates that an operation has completed successfully.
str yasmin_ros.basic_outcomes.TIMEOUT = "timeout" |
Indicates that an operation has timed out and did not complete in a timely manner.