01: /*
02: * Created by IntelliJ IDEA.
03: * User: Michael Mason
04: * Date: Jun 5, 2002
05: * Time: 6:43:04 PM
06: * To change template for new interface use
07: * Code Style | Class Templates options (Tools | IDE Options).
08: */
09: package weblech.spider;
10:
11: public interface Constants {
12:
13: /** How often to check the queue status */
14: int QUEUE_CHECK_INTERVAL = 500;
15: /** How long to pause for threads to finish before exitting */
16: int SPIDER_STOP_PAUSE = 500;
17: }
|