How can I use a broadcast decision block in my flow to communicate with another flow?
I need to send a broadcast and wait for a response. I tried to use this block, but it only sends a broadcast, doesn't wait for the result, and goes through the "Yes" exit as if it had received the result.
My goal is to create a library that can be used in other flows. The problem is that when one flow sends a broadcast to my library, my library spends some time forking and returning to the receiver block, and if a second flow sends a request in this time period, it does not receive a response and hangs in this state.
I wanted to replace the send/receive blocks in the user flow with a single Broadcast decision block that would wait for a response and (possibly) resend the broadcast if it didn't get a response, but I failed at that point.
Please, help me with my problem.