I want to have a global variable for inter thread communication.
Current setup:
Thread Group 1: It is a multi-user thread, that will be accessing certain API's in a flow.
Thread group 2: Now, as per our current system, the auth-token refreshes after every 10 min. So in this thread group, I am calling refreshToken API.
Approach1: Tried using jmeter property. But since all threads are in parallel, so if one thread updates the token, all other threads fail.
Approach2: Using InterThreadCommunication plugin. Since I don't know when and where in the system, the token will expire, so don't know where to call in the inter thread communication pre-processor.
