Inter Process Communication (IPC) within and between Workflows

Learn about the IPC feature which enables workflows to communicate with each other

Last published at: July 27th, 2024

 

FlowWright introduces an extremely useful feature: Inter-Process Communication (IPC).  IPC provides a pathway for workflows to communicate with each other or even within the same workflow. 

 

To start with, let’s examine communication within the same workflow.

 

In the above workflow design example, 2 parallel branches emerge from the Start step.  The left branch is waiting for the message “ACK”.  The right branch leads to a task step, and once Manager #2 approves the task to be completed, the “send message” step will be executed.  This last "send messages" step is configured to send the message “ACK” within the current workflow.  The configuration for the “send message” looks as follows:

 

The configuration for the “wait for message” looks as follows:

 

Let’s execute the workflow and see how the workflow behaves.  Below is the executed workflow:

 

As you can see from the above diagram, “wait for the message” is waiting for a message, and the “Manager 2 approval” task step is waiting to be completed.  As soon as the task is completed, the “send message” step sends the “ACK” message to the wait step, and the workflow continues processing.  So, let’s complete the task:

 

The message was sent and received by the waiting step, and the workflow progressed to the “Manager 3 approval” task step.

 

So why is IPC important? 


Using wait steps, control flow within any workflow can be managed. In older versions of FlowWright, messages are relayed using our API calls. From now on, FlowWright enables you to send messages within or between workflows using a standard library step.

All workflows entail data flow and control flow, which was always managed using transitions between steps. However, with IPC infrastructure, workflows can communicate within themselves and with each other.