skipstatus meaning可打印版本 +- RoboDK Forum (//www.sinclairbody.com/forum) +-- Forum: RoboDK (EN) (//www.sinclairbody.com/forum/Forum-RoboDK-EN) +--- Forum: RoboDK API (//www.sinclairbody.com/forum/Forum-RoboDK-API) +--- Thread: skipstatus meaning (/Thread-skipstatus-meaning) |
skipstatus meaning-hugo.costelha-10-27-2022 Hi, Can anyone explain me the meaning of the skipstatus parameter in the Robolink() method? In//www.sinclairbody.com/doc/en/PythonAPI/robodk.html#robodk.robolink.Robolinkit does not explain its meaning. Thanks and best regards, Hugo RE: skipstatus meaning-Sam-10-27-2022 The skipstatus flag is used to tell the API link not to wait for a response from RoboDK after a command. If your operation fails, RoboDK will send a status message and an error code. By using the skipstatus, you won't be notified of successful and unsuccessful operations. You can find more information in our GitHub: https://github.com/RoboDK/RoboDK-API/blob/master/Python/robodk/robolink.py#L1095 RE: skipstatus meaning-Albert-10-27-2022 The skip status flag was added recently and it allows you to speed up the communication of the API. This flag skips waiting for the execution of some functions that do not return anything. RE: skipstatus meaning-hugo.costelha-10-27-2022 Thanks Sam and Albert for the clarification. |