KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > weblech > spider > Constants


1 /*
2  * Created by IntelliJ IDEA.
3  * User: Michael Mason
4  * Date: Jun 5, 2002
5  * Time: 6:43:04 PM
6  * To change template for new interface use
7  * Code Style | Class Templates options (Tools | IDE Options).
8  */

9 package weblech.spider;
10
11 public interface Constants
12 {
13
14     /** How often to check the queue status */
15     int QUEUE_CHECK_INTERVAL = 500;
16     /** How long to pause for threads to finish before exitting */
17     int SPIDER_STOP_PAUSE = 500;
18 }
19
Popular Tags