is_any_arm_in_execution()
- 1 Minute to read
is_any_arm_in_execution()
- 1 Minute to read
Article summary
Did you find this summary helpful?
Thank you for your feedback
Checks if any arm is in the middle of a process.
Reference
Arguments
None
Return
Type | Description |
---|---|
bool | True if any arm is operating currently. |
Exceptions
RayaArmsException
See the complete list of arms exceptions
Usage example
...
self.arms = self.enable_controller('arms')
...
running = self.arms.is_any_arm_in_execution()
self.log.info(running)
...
Output:
False
Was this article helpful?