Pass the variable across flows

(mda) #1

Hi,

I am currently trying to pass variables across flows. Is this possible?

I need to create & initialize an array in one flow. This array will be filled up in 2nd flow and hence needs to be passed to 2nd flow. How do I achieve this?

Thx,

(John Jackson) #2

If you use the Flow Service to trigger another flow, you can set and receive Metadata. This is perfect for passing data between flows.

Of of course you could set an attribute and get it in another flow. :+1:

2 Likes
(mda) #3

thanks. it helps me proceed