public class

Worker

extends Thread
java.lang.Object
   ↳ java.lang.Thread
     ↳ sun.tools.jconsole.Worker

Summary

[Expand]
Inherited Constants
From class java.lang.Thread
Public Constructors
Worker(String name)
Public Methods
void add(Runnable job)
boolean queueFull()
void run()
If this thread was constructed using a separate Runnable run object, then that Runnable object's run method is called; otherwise, this method does nothing and returns.
synchronized void stopWorker()
[Expand]
Inherited Methods
From class java.lang.Thread
From class java.lang.Object
From interface java.lang.Runnable

Public Constructors

public Worker (String name)

Public Methods

public void add (Runnable job)

public boolean queueFull ()

public void run ()

If this thread was constructed using a separate Runnable run object, then that Runnable object's run method is called; otherwise, this method does nothing and returns.

Subclasses of Thread should override this method.

public synchronized void stopWorker ()