I'm Accessing Same variable from different script components parallelly using the below mentioned way
VariableDispenser.LockForRead("User::ServerHostAddress");
VariableDispenser.GetVariables(out variables);
ServerHostAddress = variables[0].Value.ToString();
I'm facing problem as the variables are being locked when they are being accessed parallelly.
Please specify a way through which we can access the same varible parallelly