Common variable for execution groups

If I create an environment variable, will it exist in all threads within the execution group? I need to have a value that needs to be shared between two threads in the same execution group.

+3
source share
1 answer

Nope. An environment variable has its own scope for a particular thread. If you want to split the value between two threads, you will have to pass it as a message or use custom properties (UDP) to set it for all threads in the execution group.

+2
source

All Articles