The doc for SleepTime configuration does not seem to indicate whether the value is set in seconds or milliseconds, etc.
Great product, thanks!
Logged In: YES user_id=157622
If you look in src/net/matuschek/spider/WebRobot.java, you'll see:
Thread.currentThread().sleep(sleepTime*1000);
Since the Thread sleep method takes miliseconds, and JoBob chucks in the 1000 modifier, the SleepTime parameter must be in seconds
Log in to post a comment.
Logged In: YES
user_id=157622
If you look in src/net/matuschek/spider/WebRobot.java, you'll see:
Thread.currentThread().sleep(sleepTime*1000);
Since the Thread sleep method takes miliseconds, and JoBob chucks in
the 1000 modifier, the SleepTime parameter must be in seconds