Interface CountingExecutionEntity
-
- All Known Implementing Classes:
ExecutionEntityImpl
@Internal public interface CountingExecutionEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetDeadLetterJobCount()intgetEventSubscriptionCount()intgetIdentityLinkCount()intgetJobCount()intgetSuspendedJobCount()intgetTaskCount()intgetTimerJobCount()intgetVariableCount()booleanisCountEnabled()voidsetCountEnabled(boolean isCountEnabled)voidsetDeadLetterJobCount(int deadLetterJobCount)voidsetEventSubscriptionCount(int eventSubscriptionCount)voidsetIdentityLinkCount(int identityLinkCount)voidsetJobCount(int jobCount)voidsetSuspendedJobCount(int suspendedJobCount)voidsetTaskCount(int taskcount)voidsetTimerJobCount(int timerJobCount)voidsetVariableCount(int variableCount)
-
-
-
Method Detail
-
isCountEnabled
boolean isCountEnabled()
-
setCountEnabled
void setCountEnabled(boolean isCountEnabled)
-
setEventSubscriptionCount
void setEventSubscriptionCount(int eventSubscriptionCount)
-
getEventSubscriptionCount
int getEventSubscriptionCount()
-
setTaskCount
void setTaskCount(int taskcount)
-
getTaskCount
int getTaskCount()
-
setJobCount
void setJobCount(int jobCount)
-
getJobCount
int getJobCount()
-
setTimerJobCount
void setTimerJobCount(int timerJobCount)
-
getTimerJobCount
int getTimerJobCount()
-
setSuspendedJobCount
void setSuspendedJobCount(int suspendedJobCount)
-
getSuspendedJobCount
int getSuspendedJobCount()
-
setDeadLetterJobCount
void setDeadLetterJobCount(int deadLetterJobCount)
-
getDeadLetterJobCount
int getDeadLetterJobCount()
-
setVariableCount
void setVariableCount(int variableCount)
-
getVariableCount
int getVariableCount()
-
setIdentityLinkCount
void setIdentityLinkCount(int identityLinkCount)
-
getIdentityLinkCount
int getIdentityLinkCount()
-
-