Correlating messages

When modeling a process, correlating a message (e.g. to start another process) does not do anything by default. Valtimo offers several methods to facilitate message correlation. These can be separated into starting a process (Message Start Events) and receiving messages in a running process (Message Boundary Events and Message Intermediate Catch Events).

How to use

Valtimo provides several methods that can be used inside a BPMN, accessible through the correlationService bean. Which method to use depends on the use case. For more information on the separate use cases see the three sections below.

These methods can be used in expressions applied to message throw events like this:

intermediate-throw-example

The first argument is the key of the message that should be sent. In this example, there should also be a message start event that waits for this particular message, like so:

message-start-event-example

Correlating start events

As shown in the example above, Valtimo provides a sendStartMessage method. The following variations are possible:

Variables passed on will be stored as process variables for the process. Providing a target process definition key means the message will be correlated to a process definition matching that process definition key.

Correlating message catch events

There are different ways to correlate message catch events. Either correlating a single message to a single catch event, or correlating a single message to any number of catch events. These methods correlate within the same case (by business key). To correlate across all cases, see the next section. Valtimo supports both of these ways through the sendCatchEventMessage and sendCatchEventMessageToAll methods. The following variations are possible:

Variables passed on will be stored in the process. The provided business key will correlate the message to events with process instances matching that business key.

Correlating message catch events globally

To correlate messages across all process instances regardless of which case they belong to, use the sendGlobalCatchEventMessage and sendGlobalCatchEventMessageToAll methods. These work the same as their non-global counterparts but without a business key filter:

Since no business key is provided, these methods will not create a process-document association โ€” though this is only relevant in uncommon cases where a process is started outside the normal flow, in which case managing that association is the responsibility of the caller.

Last updated