Hi, Can anyone help me figure this out please with thread sleep times. I want to make the thread sleep for a random time. but make the time betweem two boundaires. e.g. make the thread sleep between two and four seconds. Currently I am doing this
but this only works for a single random number. Please help thanks!
Tom Wolve
Ranch Hand
Joined: Sep 22, 2003
Posts: 32
posted
0
Hi, try
and your thread should be sleeping between two and four seconds.
Nick George
Ranch Hand
Joined: Nov 17, 2003
Posts: 38
posted
0
often a good idea to surround a sleep with an try-catch: try{ (code) }catch(Exception e){}