User: simone
Date: 00/10/19 14:51:59
Modified: src/main/org/jboss/util WorkerQueue.java
Log:
The thread data member is now protected instead of private, to allow subclasses to
set the context classloader on it
Revision Changes Path
1.2 +2 -2 jboss/src/main/org/jboss/util/WorkerQueue.java
Index: WorkerQueue.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/WorkerQueue.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- WorkerQueue.java 2000/10/16 23:17:27 1.1
+++ WorkerQueue.java 2000/10/19 21:51:59 1.2
@@ -12,7 +12,7 @@
*
* @see Executable
* @author Simone Bordet ([EMAIL PROTECTED])
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
*/
public class WorkerQueue
{
@@ -20,7 +20,7 @@
// Attributes ----------------------------------------------------
/* The thread that runs the Executable jobs */
- private Thread m_queueThread;
+ protected Thread m_queueThread;
/* The job that will be executed by the worker thread */
private JobItem m_currentJob;