FileDocCategorySizeDatePackage
WorkerMBean.javaAPI DocExample1278Thu May 23 09:32:50 BST 2002sample.loading

WorkerMBean

public interface WorkerMBean implements sample.standard.BasicMBean
Management interface definition for Worker as a standard MBean. A worker represents a thread of execution in the application that is performing some work. There are four attributes: 1. WorkFactor (int) - Read/Write 2. NumberOfUnitsProcessed (long) - READ-ONLY 3. AverageUnitProcessingTime (float) - READ-ONLY 4. Suspended (boolean) - READ-ONLY and three operations: 1. stop() - shuts down the worker thread 2. suspend() - suspends processing (i.e., the "work") of the worker thread. 3. resume() - resumes processing of the worker thread.

Fields Summary
Constructors Summary
Methods Summary
public floatgetAverageUnitProcessingTime()

public java.lang.ObjectgetMe()

public longgetNumberOfUnitsProcessed()

public intgetWorkFactor()

public booleanisSuspended()

public voidresume()

public voidsetQueue(java.lang.Object value)

public voidsetWorkFactor(int workFactor)

public voidstop()

public voidsuspend()