Communication between processes inside a loop
In this practice activity, we will extend the previous activity to include correlation when we call the Called
process multiple times inside a loop. This will allow us to explore a slightly different area of correlation—scoped conversation
s and correlation when the process is participating in multiple conversations. In this activity, our Calling
process starts a number of sub-processes
. Each of these in turn starts an instance of the called process, as illustrated in the following diagram:
Note
You need to complete the first practice activity before starting this one. This activity will extend the project we created previously.
Let's start by creating some additional data types we will need now:
Create a second Business Object called WorkArray.
Add a single attribute named work of type
<Array>
of <Component>Work
. We will use this to hold our list of input data.Create another process called CallerWithMultiInstance, again choosing the...