Allows for the changing of think time randomization for various functions.
Kernel.bdh
SetThinkTimeRandomization( in eOption : number, in nDeviation : number optional );
| Parameter | Description | 
|---|---|
| eOption | 
                           
                            Can be either: 
  | 
                        
                     
| nDeviation | The deviation factor used when OPT_TTR_UNIFORM is set. Must be a value between 1 and 100 (%). | 
dcltrans transaction TMain begin SetThinkTimeRandomization (OPT_TTR_UNIFORM, 20 /* % */); WebUrl("http://standardhost/index.html", 2.1); // 2.1 is the mean value of the // uniform distributed thinking period end TMain;