Re: How to generate delays with a function

2007-10-13 Thread sebb
I don't think the Constant Throughput timer would be suitable. You can use the Constant Timer with a variable or function to define the wait. Or the BeanShell timer. Something to watch out for - functions are single-threaded, so don't put the wait in a function. However you can put the wait-time

How to generate delays with a function

2007-10-13 Thread Marc Chiarini (Tufts)
Hello folks, I would like to generate a delay between HTTP requests that follows a sinusoidal function, e.g. wait between 0 and 100 ms according to a sine wave. I was thinking of using the __Javascript variable along with a constant throughput timer, or a counter preprocessor along with a Be