Hi there again,
I was wondering if it is possible to have some parallel executions ongoing within one scenario that models my user application. The application refreshes its UI at regular intervals in the background. Additionally, I have the “ordinary” interaction of the user with the application that results in requests.
ATM I model this using a timer that is stored in the session and I check if this background refresh has to be done and reset the timer. However, this is not that accurate and a little bit cumbersome to program.
I was thinking of an approach similar to Java’s ScheduledExecutorService where you pass some code that executes this background refresh thing and is executed at a given rate / intervals.
Thanks,
Ingo