Get status of ANY flow

Post your questions and help other users.

Moderator: Martin

Post Reply
ZSasha
Posts: 103
Joined: 11 Oct 2013 03:48

Get status of ANY flow

Post by ZSasha » 22 Jan 2014 21:20

Would it be possible to add a function to get a status of a/all flows?

Something like "Init Variable Flow List" that could return a list of ALL flows in a system?
and then "Get Flow State" to see whether a flow is enabled/disabled/executing

Thanks.

User avatar
Martin
Posts: 4468
Joined: 09 Nov 2012 14:23

Re: Get status of ANY flow

Post by Martin » 22 Jan 2014 21:27

There's a script-function to get all flow names:
action Script: flow_names = getFlowNames();

...and a condition to check if a flow is enabled or disabled:
-condition Flow Enabled: FlowXYZ

...and a condition to check if a flow is executing:
-condition Flow Executing: FlowXYZ

Regards,
Martin

ZSasha
Posts: 103
Joined: 11 Oct 2013 03:48

Re: Get status of ANY flow

Post by ZSasha » 22 Jan 2014 21:34

Thanks Martin!

Post Reply