Uses of Interface
org.activiti.engine.runtime.Job
-
-
Uses of Job in org.activiti.engine
Methods in org.activiti.engine that return Job Modifier and Type Method Description JobManagementService. moveDeadLetterJobToExecutableJob(java.lang.String jobId, int retries)Moves a job that is in the dead letter job table back to be an executable job, and resetting the retries (as the retries was 0 when it was put into the dead letter job table).JobManagementService. moveJobToDeadLetterJob(java.lang.String jobId)Moves a job to the dead letter job table (eg.JobManagementService. moveTimerToExecutableJob(java.lang.String jobId)Moves a timer job to the executable job table (eg. -
Uses of Job in org.activiti.engine.impl
Methods in org.activiti.engine.impl that return Job Modifier and Type Method Description JobManagementServiceImpl. moveDeadLetterJobToExecutableJob(java.lang.String jobId, int retries)JobManagementServiceImpl. moveJobToDeadLetterJob(java.lang.String jobId)JobManagementServiceImpl. moveTimerToExecutableJob(java.lang.String jobId)Methods in org.activiti.engine.impl that return types with arguments of type Job Modifier and Type Method Description java.util.List<Job>DeadLetterJobQueryImpl. executeList(CommandContext commandContext, Page page)java.util.List<Job>JobQueryImpl. executeList(CommandContext commandContext, Page page)java.util.List<Job>SuspendedJobQueryImpl. executeList(CommandContext commandContext, Page page)java.util.List<Job>TimerJobQueryImpl. executeList(CommandContext commandContext, Page page) -
Uses of Job in org.activiti.engine.impl.asyncexecutor
Fields in org.activiti.engine.impl.asyncexecutor declared as Job Modifier and Type Field Description protected JobExecuteAsyncRunnable. jobFields in org.activiti.engine.impl.asyncexecutor with type parameters of type Job Modifier and Type Field Description protected java.util.LinkedList<Job>DefaultAsyncJobExecutor. temporaryJobQueueMethods in org.activiti.engine.impl.asyncexecutor with parameters of type Job Modifier and Type Method Description java.lang.RunnableExecuteAsyncRunnableFactory. createExecuteAsyncRunnable(Job job, ProcessEngineConfigurationImpl processEngineConfiguration)protected java.lang.RunnableDefaultAsyncJobExecutor. createRunnableForJob(Job job)voidDefaultJobManager. execute(Job job)voidJobManager. execute(Job job)Execute a job, which means that the logic (async logic, timer that fires, etc) is executed, typically by a background thread of an executor.booleanAsyncExecutor. executeAsyncJob(Job job)Offers the providedJobEntityto thisAsyncExecutorinstance to execute.booleanDefaultAsyncJobExecutor. executeAsyncJob(Job job)voidDefaultJobManager. unacquire(Job job)voidJobManager. unacquire(Job job)Unacquires a job, meaning that this job was previously locked, and it is now freed to be acquired by other executor nodes.Constructors in org.activiti.engine.impl.asyncexecutor with parameters of type Job Constructor Description ExecuteAsyncRunnable(Job job, ProcessEngineConfigurationImpl processEngineConfiguration) -
Uses of Job in org.activiti.engine.impl.asyncexecutor.multitenant
Methods in org.activiti.engine.impl.asyncexecutor.multitenant with parameters of type Job Modifier and Type Method Description java.lang.RunnableTenantAwareExecuteAsyncRunnableFactory. createExecuteAsyncRunnable(Job job, ProcessEngineConfigurationImpl processEngineConfiguration)booleanExecutorPerTenantAsyncExecutor. executeAsyncJob(Job job)Constructors in org.activiti.engine.impl.asyncexecutor.multitenant with parameters of type Job Constructor Description TenantAwareExecuteAsyncRunnable(Job job, ProcessEngineConfigurationImpl processEngineConfiguration, TenantInfoHolder tenantInfoHolder, java.lang.String tenantId) -
Uses of Job in org.activiti.engine.impl.cmd
Fields in org.activiti.engine.impl.cmd declared as Job Modifier and Type Field Description protected JobLockExclusiveJobCmd. jobprotected JobUnlockExclusiveJobCmd. jobConstructors in org.activiti.engine.impl.cmd with parameters of type Job Constructor Description LockExclusiveJobCmd(Job job)UnlockExclusiveJobCmd(Job job) -
Uses of Job in org.activiti.engine.impl.jobexecutor
Fields in org.activiti.engine.impl.jobexecutor declared as Job Modifier and Type Field Description protected JobFailedJobListener. jobConstructors in org.activiti.engine.impl.jobexecutor with parameters of type Job Constructor Description FailedJobListener(CommandExecutor commandExecutor, Job job) -
Uses of Job in org.activiti.engine.impl.persistence.entity
Subinterfaces of Job in org.activiti.engine.impl.persistence.entity Modifier and Type Interface Description interfaceAbstractJobEntityinterfaceDeadLetterJobEntitySuspended jobs are stored separately to increase the normal job query performanceinterfaceJobEntityRepresents an async job: a piece of logic that needs to be executed asynchronously.interfaceSuspendedJobEntitySuspended jobs are stored separately to increase the normal job query performanceinterfaceTimerJobEntityStub of the common parts of a Job.Classes in org.activiti.engine.impl.persistence.entity that implement Job Modifier and Type Class Description classAbstractJobEntityImplAbstract job entity class.classDeadLetterJobEntityImplDeadLetterJob entity, necessary for persistence.classJobEntityImplJob entity.classSuspendedJobEntityImplTimerJob entity, necessary for persistence.classTimerJobEntityImplTimerJob entity, necessary for persistence.Methods in org.activiti.engine.impl.persistence.entity that return types with arguments of type Job Modifier and Type Method Description java.util.List<Job>DeadLetterJobEntityManager. findJobsByQueryCriteria(DeadLetterJobQueryImpl jobQuery, Page page)Executes aJobQueryImpland returns the matchingDeadLetterJobEntityinstances.java.util.List<Job>DeadLetterJobEntityManagerImpl. findJobsByQueryCriteria(DeadLetterJobQueryImpl jobQuery, Page page)java.util.List<Job>JobEntityManager. findJobsByQueryCriteria(JobQueryImpl jobQuery, Page page)Executes aJobQueryImpland returns the matchingJobEntityinstances.java.util.List<Job>JobEntityManagerImpl. findJobsByQueryCriteria(JobQueryImpl jobQuery, Page page)java.util.List<Job>SuspendedJobEntityManager. findJobsByQueryCriteria(SuspendedJobQueryImpl jobQuery, Page page)Executes aJobQueryImpland returns the matchingSuspendedJobEntityinstances.java.util.List<Job>SuspendedJobEntityManagerImpl. findJobsByQueryCriteria(SuspendedJobQueryImpl jobQuery, Page page)java.util.List<Job>TimerJobEntityManager. findJobsByQueryCriteria(TimerJobQueryImpl jobQuery, Page page)Executes aJobQueryImpland returns the matchingTimerJobEntityinstances.java.util.List<Job>TimerJobEntityManagerImpl. findJobsByQueryCriteria(TimerJobQueryImpl jobQuery, Page page) -
Uses of Job in org.activiti.engine.impl.persistence.entity.data
Methods in org.activiti.engine.impl.persistence.entity.data that return types with arguments of type Job Modifier and Type Method Description java.util.List<Job>DeadLetterJobDataManager. findJobsByQueryCriteria(DeadLetterJobQueryImpl jobQuery, Page page)java.util.List<Job>JobDataManager. findJobsByQueryCriteria(JobQueryImpl jobQuery, Page page)java.util.List<Job>SuspendedJobDataManager. findJobsByQueryCriteria(SuspendedJobQueryImpl jobQuery, Page page)java.util.List<Job>TimerJobDataManager. findJobsByQueryCriteria(TimerJobQueryImpl jobQuery, Page page) -
Uses of Job in org.activiti.engine.impl.persistence.entity.data.impl
Methods in org.activiti.engine.impl.persistence.entity.data.impl that return types with arguments of type Job Modifier and Type Method Description java.util.List<Job>MybatisDeadLetterJobDataManager. findJobsByQueryCriteria(DeadLetterJobQueryImpl jobQuery, Page page)java.util.List<Job>MybatisJobDataManager. findJobsByQueryCriteria(JobQueryImpl jobQuery, Page page)java.util.List<Job>MybatisSuspendedJobDataManager. findJobsByQueryCriteria(SuspendedJobQueryImpl jobQuery, Page page)java.util.List<Job>MybatisTimerJobDataManager. findJobsByQueryCriteria(TimerJobQueryImpl jobQuery, Page page)
-