Uses of Interface
org.activiti.engine.impl.persistence.entity.TimerJobEntity
-
-
Uses of TimerJobEntity in org.activiti.engine.impl.asyncexecutor
Fields in org.activiti.engine.impl.asyncexecutor with type parameters of type TimerJobEntity Modifier and Type Field Description protected java.util.Map<java.lang.String,TimerJobEntity>AcquiredTimerJobEntities. acquiredJobsMethods in org.activiti.engine.impl.asyncexecutor that return TimerJobEntity Modifier and Type Method Description TimerJobEntityDefaultJobManager. createTimerJob(org.activiti.bpmn.model.TimerEventDefinition timerEventDefinition, boolean interrupting, ExecutionEntity execution, java.lang.String timerEventType, java.lang.String jobHandlerConfiguration)TimerJobEntityJobManager. createTimerJob(org.activiti.bpmn.model.TimerEventDefinition timerEventDefinition, boolean interrupting, ExecutionEntity execution, java.lang.String timerEventType, java.lang.String jobHandlerConfiguration)Creates aTimerJobEntitybased on the currentExecutionEntityand the configuration in theTimerEventDefinition.protected TimerJobEntityDefaultJobManager. createTimerJobFromOtherJob(AbstractJobEntity otherJob)TimerJobEntityDefaultJobManager. moveJobToTimerJob(AbstractJobEntity job)TimerJobEntityJobManager. moveJobToTimerJob(AbstractJobEntity job)Moves anAbstractJobEntityto become aTimerJobEntity.Methods in org.activiti.engine.impl.asyncexecutor that return types with arguments of type TimerJobEntity Modifier and Type Method Description java.util.Collection<TimerJobEntity>AcquiredTimerJobEntities. getJobs()Methods in org.activiti.engine.impl.asyncexecutor with parameters of type TimerJobEntity Modifier and Type Method Description voidAcquiredTimerJobEntities. addJob(TimerJobEntity job)JobEntityDefaultJobManager. moveTimerJobToExecutableJob(TimerJobEntity timerJob)JobEntityJobManager. moveTimerJobToExecutableJob(TimerJobEntity timerJob)Moves aTimerJobEntityto become an asyncJobEntity.voidDefaultJobManager. scheduleTimerJob(TimerJobEntity timerJob)voidJobManager. scheduleTimerJob(TimerJobEntity timerJob)Schedules a timer, meaning it will be inserted in the datastore. -
Uses of TimerJobEntity in org.activiti.engine.impl.bpmn.deployer
Methods in org.activiti.engine.impl.bpmn.deployer that return types with arguments of type TimerJobEntity Modifier and Type Method Description protected java.util.List<TimerJobEntity>TimerManager. getTimerDeclarations(ProcessDefinitionEntity processDefinition, org.activiti.bpmn.model.Process process) -
Uses of TimerJobEntity in org.activiti.engine.impl.cmd
Methods in org.activiti.engine.impl.cmd that return TimerJobEntity Modifier and Type Method Description protected TimerJobEntityDeleteTimerJobCmd. getJobToDelete(CommandContext commandContext)Methods in org.activiti.engine.impl.cmd with parameters of type TimerJobEntity Modifier and Type Method Description protected voidAcquireTimerJobsCmd. lockJob(CommandContext commandContext, TimerJobEntity job, int lockTimeInMillis)protected voidDeleteTimerJobCmd. sendCancelEvent(TimerJobEntity jobToDelete) -
Uses of TimerJobEntity in org.activiti.engine.impl.persistence.entity
Classes in org.activiti.engine.impl.persistence.entity that implement TimerJobEntity Modifier and Type Class Description classTimerJobEntityImplTimerJob entity, necessary for persistence.Fields in org.activiti.engine.impl.persistence.entity with type parameters of type TimerJobEntity Modifier and Type Field Description protected java.util.List<TimerJobEntity>ExecutionEntityImpl. timerJobsMethods in org.activiti.engine.impl.persistence.entity that return TimerJobEntity Modifier and Type Method Description TimerJobEntityTimerJobEntityManager. createAndCalculateNextTimer(JobEntity timerEntity, VariableScope variableScope)Creates a newTimerJobEntity, typically when a timer is used in a repeating way.TimerJobEntityTimerJobEntityManagerImpl. createAndCalculateNextTimer(JobEntity timerEntity, VariableScope variableScope)protected TimerJobEntityTimerJobEntityManagerImpl. createTimer(JobEntity te)Methods in org.activiti.engine.impl.persistence.entity that return types with arguments of type TimerJobEntity Modifier and Type Method Description java.util.List<TimerJobEntity>TimerJobEntityManager. findJobsByExecutionId(java.lang.String id)Returns allTimerJobEntityinstances related to onExecutionEntity.java.util.List<TimerJobEntity>TimerJobEntityManagerImpl. findJobsByExecutionId(java.lang.String id)java.util.List<TimerJobEntity>TimerJobEntityManager. findJobsByProcessInstanceId(java.lang.String id)Returns allTimerJobEntityinstances related to onExecutionEntity.java.util.List<TimerJobEntity>TimerJobEntityManagerImpl. findJobsByProcessInstanceId(java.lang.String id)java.util.List<TimerJobEntity>TimerJobEntityManager. findJobsByTypeAndProcessDefinitionId(java.lang.String type, java.lang.String processDefinitionId)Returns theTimerJobEntityfor a given process definition.java.util.List<TimerJobEntity>TimerJobEntityManagerImpl. findJobsByTypeAndProcessDefinitionId(java.lang.String jobHandlerType, java.lang.String processDefinitionId)java.util.List<TimerJobEntity>TimerJobEntityManager. findJobsByTypeAndProcessDefinitionKeyAndTenantId(java.lang.String type, java.lang.String processDefinitionKey, java.lang.String tenantId)The same asTimerJobEntityManager.findJobsByTypeAndProcessDefinitionId(String, String), but by key and for a specific tenantId.java.util.List<TimerJobEntity>TimerJobEntityManagerImpl. findJobsByTypeAndProcessDefinitionKeyAndTenantId(java.lang.String jobHandlerType, java.lang.String processDefinitionKey, java.lang.String tenantId)java.util.List<TimerJobEntity>TimerJobEntityManager. findJobsByTypeAndProcessDefinitionKeyNoTenantId(java.lang.String type, java.lang.String processDefinitionKey)The same asTimerJobEntityManager.findJobsByTypeAndProcessDefinitionId(String, String), but by key and specifically for the 'no tenant' mode.java.util.List<TimerJobEntity>TimerJobEntityManagerImpl. findJobsByTypeAndProcessDefinitionKeyNoTenantId(java.lang.String jobHandlerType, java.lang.String processDefinitionKey)java.util.List<TimerJobEntity>TimerJobEntityManager. findTimerJobsToExecute(Page page)Returns theTimerJobEntityinstances that are elegible to execute, meaning the due date of the timer has been passed.java.util.List<TimerJobEntity>TimerJobEntityManagerImpl. findTimerJobsToExecute(Page page)java.util.List<TimerJobEntity>ExecutionEntity. getTimerJobs()java.util.List<TimerJobEntity>ExecutionEntityImpl. getTimerJobs()Methods in org.activiti.engine.impl.persistence.entity with parameters of type TimerJobEntity Modifier and Type Method Description voidTimerJobEntityManagerImpl. delete(TimerJobEntity jobEntity)protected voidTimerJobEntityManagerImpl. deleteExceptionByteArrayRef(TimerJobEntity jobEntity)Deletes a the byte array used to store the exception information.protected booleanTimerJobEntityManagerImpl. doInsert(TimerJobEntity jobEntity, boolean fireCreateEvent)voidTimerJobEntityManagerImpl. insert(TimerJobEntity jobEntity)voidTimerJobEntityManagerImpl. insert(TimerJobEntity jobEntity, boolean fireCreateEvent)booleanTimerJobEntityManager. insertTimerJobEntity(TimerJobEntity timerJobEntity)Insert theTimerJobEntity, similar to#insert(TimerJobEntity), but returns a boolean in case the insert did not go through.booleanTimerJobEntityManagerImpl. insertTimerJobEntity(TimerJobEntity timerJobEntity)protected voidTimerJobEntityManagerImpl. removeExecutionLink(TimerJobEntity jobEntity)Removes the job's execution's reference to this job, if the job has an associated execution. -
Uses of TimerJobEntity in org.activiti.engine.impl.persistence.entity.data
Methods in org.activiti.engine.impl.persistence.entity.data that return types with arguments of type TimerJobEntity Modifier and Type Method Description java.util.List<TimerJobEntity>TimerJobDataManager. findJobsByExecutionId(java.lang.String executionId)java.util.List<TimerJobEntity>TimerJobDataManager. findJobsByProcessInstanceId(java.lang.String processInstanceId)java.util.List<TimerJobEntity>TimerJobDataManager. findJobsByTypeAndProcessDefinitionId(java.lang.String jobHandlerType, java.lang.String processDefinitionId)java.util.List<TimerJobEntity>TimerJobDataManager. findJobsByTypeAndProcessDefinitionKeyAndTenantId(java.lang.String jobHandlerType, java.lang.String processDefinitionKey, java.lang.String tenantId)java.util.List<TimerJobEntity>TimerJobDataManager. findJobsByTypeAndProcessDefinitionKeyNoTenantId(java.lang.String jobHandlerType, java.lang.String processDefinitionKey)java.util.List<TimerJobEntity>TimerJobDataManager. findTimerJobsToExecute(Page page) -
Uses of TimerJobEntity in org.activiti.engine.impl.persistence.entity.data.impl
Fields in org.activiti.engine.impl.persistence.entity.data.impl with type parameters of type TimerJobEntity Modifier and Type Field Description protected CachedEntityMatcher<TimerJobEntity>MybatisTimerJobDataManager. timerJobsByExecutionIdMatcherMethods in org.activiti.engine.impl.persistence.entity.data.impl that return TimerJobEntity Modifier and Type Method Description TimerJobEntityMybatisTimerJobDataManager. create()Methods in org.activiti.engine.impl.persistence.entity.data.impl that return types with arguments of type TimerJobEntity Modifier and Type Method Description java.util.List<TimerJobEntity>MybatisTimerJobDataManager. findJobsByExecutionId(java.lang.String executionId)java.util.List<TimerJobEntity>MybatisTimerJobDataManager. findJobsByProcessInstanceId(java.lang.String processInstanceId)java.util.List<TimerJobEntity>MybatisTimerJobDataManager. findJobsByTypeAndProcessDefinitionId(java.lang.String jobHandlerType, java.lang.String processDefinitionId)java.util.List<TimerJobEntity>MybatisTimerJobDataManager. findJobsByTypeAndProcessDefinitionKeyAndTenantId(java.lang.String jobHandlerType, java.lang.String processDefinitionKey, java.lang.String tenantId)java.util.List<TimerJobEntity>MybatisTimerJobDataManager. findJobsByTypeAndProcessDefinitionKeyNoTenantId(java.lang.String jobHandlerType, java.lang.String processDefinitionKey)java.util.List<TimerJobEntity>MybatisTimerJobDataManager. findTimerJobsToExecute(Page page)java.lang.Class<? extends TimerJobEntity>MybatisTimerJobDataManager. getManagedEntityClass() -
Uses of TimerJobEntity in org.activiti.engine.impl.persistence.entity.data.impl.cachematcher
Methods in org.activiti.engine.impl.persistence.entity.data.impl.cachematcher with parameters of type TimerJobEntity Modifier and Type Method Description booleanTimerJobsByExecutionIdMatcher. isRetained(TimerJobEntity jobEntity, java.lang.Object param) -
Uses of TimerJobEntity in org.activiti.engine.impl.util
Methods in org.activiti.engine.impl.util that return TimerJobEntity Modifier and Type Method Description static TimerJobEntityTimerUtil. createTimerEntityForTimerEventDefinition(org.activiti.bpmn.model.TimerEventDefinition timerEventDefinition, boolean isInterruptingTimer, ExecutionEntity executionEntity, java.lang.String jobHandlerType, java.lang.String jobHandlerConfig)The event definition on which the timer is based.
-