is_any_arm_in_execution()
  • 1 Minute to read

is_any_arm_in_execution()


Article summary

Checks if any arm is in the middle of a process.

Reference

Arguments

None

Return

TypeDescription
boolTrue 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?