FileDocCategorySizeDatePackage
WorkerMBean.javaAPI DocExample1053Thu May 23 09:32:50 BST 2002 sample.standard

WorkerMBean

public interface WorkerMBean implements 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 longgetNumberOfUnitsProcessed()

public intgetWorkFactor()

public booleanisSuspended()

public voidresume()

public voidsetWorkFactor(int workFactor)

public voidstop()

public voidsuspend()