Interface TimerJobEntity
-
- All Superinterfaces:
AbstractJobEntity
,Entity
,HasRevision
,Job
- All Known Implementing Classes:
TimerJobEntityImpl
@Internal public interface TimerJobEntity extends AbstractJobEntity
Stub of the common parts of a Job. You will normally work with a subclass of JobEntity, such asTimerEntity
orMessageEntity
.
-
-
Field Summary
-
Fields inherited from interface org.activiti.engine.runtime.Job
DEFAULT_EXCLUSIVE, JOB_TYPE_MESSAGE, JOB_TYPE_TIMER, MAX_EXCEPTION_MESSAGE_LENGTH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Date
getLockExpirationTime()
java.lang.String
getLockOwner()
void
setLockExpirationTime(java.util.Date claimedUntil)
void
setLockOwner(java.lang.String claimedBy)
-
Methods inherited from interface org.activiti.engine.impl.persistence.entity.AbstractJobEntity
getEndDate, getExceptionByteArrayRef, getExceptionStacktrace, getJobHandlerConfiguration, getJobHandlerType, getJobType, getMaxIterations, getRepeat, isExclusive, setDuedate, setEndDate, setExceptionMessage, setExceptionStacktrace, setExclusive, setExecution, setExecutionId, setJobHandlerConfiguration, setJobHandlerType, setJobType, setMaxIterations, setProcessDefinitionId, setProcessInstanceId, setRepeat, setRetries, setTenantId
-
Methods inherited from interface org.activiti.engine.impl.persistence.entity.Entity
getId, getPersistentState, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setUpdated
-
Methods inherited from interface org.activiti.engine.impl.db.HasRevision
getRevision, getRevisionNext, setRevision
-
Methods inherited from interface org.activiti.engine.runtime.Job
getDuedate, getExceptionMessage, getExecutionId, getId, getProcessDefinitionId, getProcessInstanceId, getRetries, getTenantId
-
-