This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
weblech/weblech/spider/Constants.java

19 lines
466 B
Java
Executable File

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