Package org.copperengine.management
Interface PersistentPriorityProcessorPoolMXBean
-
- All Superinterfaces:
ProcessorPoolMXBean
public interface PersistentPriorityProcessorPoolMXBean extends ProcessorPoolMXBean
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetDequeueBulkSize()intgetEmptyQueueWaitMSec()intgetLowerThreshold()intgetUpperThreshold()intgetUpperThresholdReachedWaitMSec()voidresumeDequeue()Resumes dequeuing of workflow instances from the storage.voidsetDequeueBulkSize(int dequeueBulkSize)voidsetEmptyQueueWaitMSec(int emptyQueueWaitMSec)voidsetLowerThreshold(int lowerThreshold)voidsetUpperThreshold(int upperThreshold)voidsetUpperThresholdReachedWaitMSec(int upperThresholdReachedWaitMSec)voidsuspendDequeue()Suspends dequeuing of workflow instances from the storage.-
Methods inherited from interface org.copperengine.management.ProcessorPoolMXBean
getId, getMemoryQueueSize, getNumberOfActiveThreads, getNumberOfThreads, getProcessorPoolState, getQueueSize, getThreadPriority, resume, setNumberOfThreads, setThreadPriority, suspend
-
-
-
-
Method Detail
-
setLowerThreshold
void setLowerThreshold(int lowerThreshold)
-
getLowerThreshold
int getLowerThreshold()
-
setUpperThreshold
void setUpperThreshold(int upperThreshold)
-
getUpperThreshold
int getUpperThreshold()
-
getUpperThresholdReachedWaitMSec
int getUpperThresholdReachedWaitMSec()
-
setUpperThresholdReachedWaitMSec
void setUpperThresholdReachedWaitMSec(int upperThresholdReachedWaitMSec)
-
getEmptyQueueWaitMSec
int getEmptyQueueWaitMSec()
-
setEmptyQueueWaitMSec
void setEmptyQueueWaitMSec(int emptyQueueWaitMSec)
-
getDequeueBulkSize
int getDequeueBulkSize()
-
setDequeueBulkSize
void setDequeueBulkSize(int dequeueBulkSize)
-
suspendDequeue
void suspendDequeue()
Suspends dequeuing of workflow instances from the storage. Workflow instances that already reside in the transient queue are still processed, i.e. calling this methods runs this processor pool "dry".- See Also:
resumeDequeue()
-
resumeDequeue
void resumeDequeue()
Resumes dequeuing of workflow instances from the storage.- See Also:
suspendDequeue()
-
-