Author: kkolinko
Date: Fri Jun 8 14:22:44 2012
New Revision: 1348086
URL: http://svn.apache.org/viewvc?rev=1348086&view=rev
Log:
CTR: add javadoc comments.
It was part of patch proposed in
https://issues.apache.org/bugzilla/show_bug.cgi?id=52996
Modified:
tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/StandardThreadExecutor.java
Modified:
tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/StandardThreadExecutor.java
URL:
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/StandardThreadExecutor.java?rev=1348086&r1=1348085&r2=1348086&view=diff
==============================================================================
---
tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/StandardThreadExecutor.java
(original)
+++
tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/StandardThreadExecutor.java
Fri Jun 8 14:22:44 2012
@@ -33,20 +33,44 @@ import java.util.concurrent.RejectedExec
public class StandardThreadExecutor implements Executor {
// ---------------------------------------------- Properties
+ /**
+ * Default thread priority
+ */
protected int threadPriority = Thread.NORM_PRIORITY;
+ /**
+ * Run threads in daemon or non-daemon state
+ */
protected boolean daemon = true;
+ /**
+ * Default name prefix for the thread name
+ */
protected String namePrefix = "tomcat-exec-";
+ /**
+ * max number of threads
+ */
protected int maxThreads = 200;
+ /**
+ * min number of threads
+ */
protected int minSpareThreads = 25;
+ /**
+ * idle time in milliseconds
+ */
protected int maxIdleTime = 60000;
+ /**
+ * The executor we use for this component
+ */
protected ThreadPoolExecutor executor = null;
+ /**
+ * the name of this thread pool
+ */
protected String name;
/**
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]