| Modifier and Type | Method and Description |
|---|---|
TimerJobEntity |
TimerJobService.createTimerJob() |
TimerJobEntity |
TimerJobService.findTimerJobById(String jobId) |
| Modifier and Type | Method and Description |
|---|---|
List<TimerJobEntity> |
TimerJobService.findJobsByTypeAndProcessDefinitionId(String type,
String processDefinitionId) |
List<TimerJobEntity> |
TimerJobService.findJobsByTypeAndProcessDefinitionKeyAndTenantId(String type,
String processDefinitionKey,
String tenantId) |
List<TimerJobEntity> |
TimerJobService.findJobsByTypeAndProcessDefinitionKeyNoTenantId(String type,
String processDefinitionKey) |
List<TimerJobEntity> |
TimerJobService.findTimerJobsByExecutionId(String executionId) |
List<TimerJobEntity> |
TimerJobService.findTimerJobsByProcessInstanceId(String processInstanceId) |
| Modifier and Type | Method and Description |
|---|---|
void |
TimerJobService.deleteTimerJob(TimerJobEntity timerJob) |
void |
TimerJobService.insertTimerJob(TimerJobEntity timerJob) |
void |
InternalJobManager.preRepeatedTimerSchedule(TimerJobEntity timerJobEntity,
org.flowable.variable.api.delegate.VariableScope variableScope) |
void |
TimerJobService.scheduleTimerJob(TimerJobEntity timerJob) |
| Modifier and Type | Method and Description |
|---|---|
TimerJobEntity |
TimerJobServiceImpl.createTimerJob() |
TimerJobEntity |
TimerJobServiceImpl.findTimerJobById(String jobId) |
| Modifier and Type | Method and Description |
|---|---|
List<TimerJobEntity> |
TimerJobServiceImpl.findJobsByTypeAndProcessDefinitionId(String type,
String processDefinitionId) |
List<TimerJobEntity> |
TimerJobServiceImpl.findJobsByTypeAndProcessDefinitionKeyAndTenantId(String type,
String processDefinitionKey,
String tenantId) |
List<TimerJobEntity> |
TimerJobServiceImpl.findJobsByTypeAndProcessDefinitionKeyNoTenantId(String type,
String processDefinitionKey) |
List<TimerJobEntity> |
TimerJobServiceImpl.findTimerJobsByExecutionId(String executionId) |
List<TimerJobEntity> |
TimerJobServiceImpl.findTimerJobsByProcessInstanceId(String processInstanceId) |
| Modifier and Type | Method and Description |
|---|---|
void |
TimerJobServiceImpl.deleteTimerJob(TimerJobEntity timerJob) |
void |
TimerJobServiceImpl.insertTimerJob(TimerJobEntity timerJob) |
void |
TimerJobServiceImpl.scheduleTimerJob(TimerJobEntity timerJob) |
| Modifier and Type | Field and Description |
|---|---|
protected Map<String,TimerJobEntity> |
AcquiredTimerJobEntities.acquiredJobs |
| Modifier and Type | Method and Description |
|---|---|
TimerJobEntity |
JobManager.createTimerJobFromOtherJob(AbstractRuntimeJobEntity otherJob)
Create a timer job from another job
|
TimerJobEntity |
DefaultJobManager.createTimerJobFromOtherJob(AbstractRuntimeJobEntity otherJob) |
TimerJobEntity |
JobManager.moveJobToTimerJob(AbstractRuntimeJobEntity job)
Moves an
AbstractRuntimeJobEntity to become a TimerJobEntity. |
TimerJobEntity |
DefaultJobManager.moveJobToTimerJob(AbstractRuntimeJobEntity job) |
| Modifier and Type | Method and Description |
|---|---|
Collection<TimerJobEntity> |
AcquiredTimerJobEntities.getJobs() |
| Modifier and Type | Method and Description |
|---|---|
void |
AcquiredTimerJobEntities.addJob(TimerJobEntity job) |
JobEntity |
JobManager.moveTimerJobToExecutableJob(TimerJobEntity timerJob)
Moves a
TimerJobEntity to become an async JobEntity. |
JobEntity |
DefaultJobManager.moveTimerJobToExecutableJob(TimerJobEntity timerJob) |
void |
JobManager.scheduleTimerJob(TimerJobEntity timerJob)
Schedules a timer, meaning it will be inserted in the datastore.
|
void |
DefaultJobManager.scheduleTimerJob(TimerJobEntity timerJob) |
| Modifier and Type | Method and Description |
|---|---|
protected TimerJobEntity |
DeleteTimerJobCmd.getJobToDelete(CommandContext commandContext) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
AcquireTimerJobsCmd.lockJob(CommandContext commandContext,
TimerJobEntity job,
int lockTimeInMillis) |
protected void |
DeleteTimerJobCmd.sendCancelEvent(TimerJobEntity jobToDelete) |
| Modifier and Type | Class and Description |
|---|---|
class |
TimerJobEntityImpl
TimerJob entity, necessary for persistence.
|
| Modifier and Type | Method and Description |
|---|---|
TimerJobEntity |
TimerJobEntityManagerImpl.createAndCalculateNextTimer(JobEntity timerEntity,
org.flowable.variable.api.delegate.VariableScope variableScope) |
TimerJobEntity |
TimerJobEntityManager.createAndCalculateNextTimer(JobEntity timerEntity,
org.flowable.variable.api.delegate.VariableScope variableScope)
Creates a new
TimerJobEntity, typically when a timer is used in a repeating way. |
protected TimerJobEntity |
TimerJobEntityManagerImpl.createTimer(JobEntity te) |
| Modifier and Type | Method and Description |
|---|---|
List<TimerJobEntity> |
TimerJobEntityManagerImpl.findJobsByExecutionId(String id) |
List<TimerJobEntity> |
TimerJobEntityManager.findJobsByExecutionId(String id)
Returns all
TimerJobEntity instances related to on ExecutionEntity. |
List<TimerJobEntity> |
TimerJobEntityManagerImpl.findJobsByProcessInstanceId(String id) |
List<TimerJobEntity> |
TimerJobEntityManager.findJobsByProcessInstanceId(String id)
Returns all
TimerJobEntity instances related to on ExecutionEntity. |
List<TimerJobEntity> |
TimerJobEntityManagerImpl.findJobsByTypeAndProcessDefinitionId(String jobHandlerType,
String processDefinitionId) |
List<TimerJobEntity> |
TimerJobEntityManager.findJobsByTypeAndProcessDefinitionId(String type,
String processDefinitionId)
Returns the
TimerJobEntity for a given process definition. |
List<TimerJobEntity> |
TimerJobEntityManagerImpl.findJobsByTypeAndProcessDefinitionKeyAndTenantId(String jobHandlerType,
String processDefinitionKey,
String tenantId) |
List<TimerJobEntity> |
TimerJobEntityManager.findJobsByTypeAndProcessDefinitionKeyAndTenantId(String type,
String processDefinitionKey,
String tenantId)
The same as
TimerJobEntityManager.findJobsByTypeAndProcessDefinitionId(String, String), but by key and for a specific tenantId. |
List<TimerJobEntity> |
TimerJobEntityManagerImpl.findJobsByTypeAndProcessDefinitionKeyNoTenantId(String jobHandlerType,
String processDefinitionKey) |
List<TimerJobEntity> |
TimerJobEntityManager.findJobsByTypeAndProcessDefinitionKeyNoTenantId(String type,
String processDefinitionKey)
The same as
TimerJobEntityManager.findJobsByTypeAndProcessDefinitionId(String, String), but by key and specifically for the 'no tenant' mode. |
List<TimerJobEntity> |
TimerJobEntityManagerImpl.findTimerJobsToExecute(Page page) |
List<TimerJobEntity> |
TimerJobEntityManager.findTimerJobsToExecute(Page page)
Returns the
TimerJobEntity instances that are eligible to execute, meaning the due date of the timer has been passed. |
| Modifier and Type | Method and Description |
|---|---|
void |
TimerJobEntityManagerImpl.delete(TimerJobEntity jobEntity) |
protected boolean |
TimerJobEntityManagerImpl.doInsert(TimerJobEntity jobEntity,
boolean fireCreateEvent) |
void |
TimerJobEntityManagerImpl.insert(TimerJobEntity jobEntity) |
void |
TimerJobEntityManagerImpl.insert(TimerJobEntity jobEntity,
boolean fireCreateEvent) |
boolean |
TimerJobEntityManagerImpl.insertTimerJobEntity(TimerJobEntity timerJobEntity) |
boolean |
TimerJobEntityManager.insertTimerJobEntity(TimerJobEntity timerJobEntity)
Insert the
TimerJobEntity, similar to #insert(TimerJobEntity), but returns a boolean in case the insert did not go through. |
| Modifier and Type | Method and Description |
|---|---|
List<TimerJobEntity> |
TimerJobDataManager.findJobsByExecutionId(String executionId) |
List<TimerJobEntity> |
TimerJobDataManager.findJobsByProcessInstanceId(String processInstanceId) |
List<TimerJobEntity> |
TimerJobDataManager.findJobsByTypeAndProcessDefinitionId(String jobHandlerType,
String processDefinitionId) |
List<TimerJobEntity> |
TimerJobDataManager.findJobsByTypeAndProcessDefinitionKeyAndTenantId(String jobHandlerType,
String processDefinitionKey,
String tenantId) |
List<TimerJobEntity> |
TimerJobDataManager.findJobsByTypeAndProcessDefinitionKeyNoTenantId(String jobHandlerType,
String processDefinitionKey) |
List<TimerJobEntity> |
TimerJobDataManager.findTimerJobsToExecute(Page page) |
| Modifier and Type | Field and Description |
|---|---|
protected CachedEntityMatcher<TimerJobEntity> |
MybatisTimerJobDataManager.timerJobsByExecutionIdMatcher |
| Modifier and Type | Method and Description |
|---|---|
TimerJobEntity |
MybatisTimerJobDataManager.create() |
| Modifier and Type | Method and Description |
|---|---|
List<TimerJobEntity> |
MybatisTimerJobDataManager.findJobsByExecutionId(String executionId) |
List<TimerJobEntity> |
MybatisTimerJobDataManager.findJobsByProcessInstanceId(String processInstanceId) |
List<TimerJobEntity> |
MybatisTimerJobDataManager.findJobsByTypeAndProcessDefinitionId(String jobHandlerType,
String processDefinitionId) |
List<TimerJobEntity> |
MybatisTimerJobDataManager.findJobsByTypeAndProcessDefinitionKeyAndTenantId(String jobHandlerType,
String processDefinitionKey,
String tenantId) |
List<TimerJobEntity> |
MybatisTimerJobDataManager.findJobsByTypeAndProcessDefinitionKeyNoTenantId(String jobHandlerType,
String processDefinitionKey) |
List<TimerJobEntity> |
MybatisTimerJobDataManager.findTimerJobsToExecute(Page page) |
Class<? extends TimerJobEntity> |
MybatisTimerJobDataManager.getManagedEntityClass() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
TimerJobsByExecutionIdMatcher.isRetained(TimerJobEntity jobEntity,
Object param) |
Copyright © 2018 Flowable. All rights reserved.