Package org.copperengine.management
Interface DatabaseDialectMXBean
-
public interface DatabaseDialectMXBean
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetDbBatchingLatencyMSec()longgetDefaultStaleResponseRemovalTimeout()java.lang.StringgetDialectDescription()booleanisRemoveWhenFinished()voidsetDbBatchingLatencyMSec(int dbBatchingLatencyMSec)voidsetDefaultStaleResponseRemovalTimeout(long defaultStaleResponseRemovalTimeout)Sets the default removal timeout for stale responses in the underlying database.voidsetRemoveWhenFinished(boolean removeWhenFinished)
-
-
-
Method Detail
-
setDefaultStaleResponseRemovalTimeout
void setDefaultStaleResponseRemovalTimeout(long defaultStaleResponseRemovalTimeout)
Sets the default removal timeout for stale responses in the underlying database. A response is stale/timed out when there is no workflow instance waiting for it within the specified amount of time.- Parameters:
defaultStaleResponseRemovalTimeout- Timeout interval in Milliseconds.
-
getDefaultStaleResponseRemovalTimeout
long getDefaultStaleResponseRemovalTimeout()
-
setDbBatchingLatencyMSec
void setDbBatchingLatencyMSec(int dbBatchingLatencyMSec)
-
getDbBatchingLatencyMSec
int getDbBatchingLatencyMSec()
-
setRemoveWhenFinished
void setRemoveWhenFinished(boolean removeWhenFinished)
-
isRemoveWhenFinished
boolean isRemoveWhenFinished()
-
getDialectDescription
java.lang.String getDialectDescription()
-
-