Java Reference
In-Depth Information
/**
* The maximum depth to search pages. -1 specifies no
* maximum depth.
*/
public int maxDepth = -1;
/**
* What user agent should be reported to the web site.
* This allows the web site to determine what browser is
* being used.
*/
public String userAgent = null;
/**
* The core thread pool size.
*/
public int corePoolSize = 100;
/**
* The maximum thread pool size.
*/
public int maximumPoolSize = 100;
/**
* How long to keep inactive threads alive. Measured in
* seconds.
*/
public long keepAliveTime = 60;
/**
* The URL to use for JDBC databases. Used to hold the
* workload.
*/
public String dbURL;
/**
* The user id to use for JDBC databases. Used to hold the
* workload.
*/
public String dbUID;
/**
* The password to use for JDBC databases. Used to hold
* the workload.
*/
public String dbPWD;
Search WWH ::




Custom Search