Uses of Interface
org.activiti.engine.runtime.Job
Packages that use Job
Package
Description
-
Uses of Job in org.activiti.engine
Methods in org.activiti.engine that return JobModifier and TypeMethodDescriptionManagementService.moveDeadLetterJobToExecutableJob(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).ManagementService.moveJobToDeadLetterJob(String jobId) Moves a job to the dead letter job table (eg. for administration or testing).ManagementService.moveTimerToExecutableJob(String jobId) Moves a timer job to the executable job table (eg. for administration or testing). -
Uses of Job in org.activiti.engine.impl
Methods in org.activiti.engine.impl that return JobModifier and TypeMethodDescriptionManagementServiceImpl.moveDeadLetterJobToExecutableJob(String jobId, int retries) ManagementServiceImpl.moveJobToDeadLetterJob(String jobId) ManagementServiceImpl.moveTimerToExecutableJob(String jobId) Methods in org.activiti.engine.impl that return types with arguments of type JobModifier and TypeMethodDescriptionDeadLetterJobQueryImpl.executeList(CommandContext commandContext, Page page) JobQueryImpl.executeList(CommandContext commandContext, Page page) SuspendedJobQueryImpl.executeList(CommandContext commandContext, Page page) TimerJobQueryImpl.executeList(CommandContext commandContext, Page page) -
Uses of Job in org.activiti.engine.impl.asyncexecutor
Fields in org.activiti.engine.impl.asyncexecutor declared as JobFields in org.activiti.engine.impl.asyncexecutor with type parameters of type JobModifier and TypeFieldDescriptionprotected LinkedList<Job> DefaultAsyncJobExecutor.temporaryJobQueueMethods in org.activiti.engine.impl.asyncexecutor with parameters of type JobModifier and TypeMethodDescriptionExecuteAsyncRunnableFactory.createExecuteAsyncRunnable(Job job, ProcessEngineConfigurationImpl processEngineConfiguration) protected RunnableDefaultAsyncJobExecutor.createRunnableForJob(Job job) voidvoidExecute 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) voidvoidUnacquires 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 JobModifierConstructorDescriptionExecuteAsyncRunnable(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 JobModifier and TypeMethodDescriptionTenantAwareExecuteAsyncRunnableFactory.createExecuteAsyncRunnable(Job job, ProcessEngineConfigurationImpl processEngineConfiguration) booleanExecutorPerTenantAsyncExecutor.executeAsyncJob(Job job) Constructors in org.activiti.engine.impl.asyncexecutor.multitenant with parameters of type JobModifierConstructorDescriptionTenantAwareExecuteAsyncRunnable(Job job, ProcessEngineConfigurationImpl processEngineConfiguration, TenantInfoHolder tenantInfoHolder, String tenantId) -
Uses of Job in org.activiti.engine.impl.cmd
Fields in org.activiti.engine.impl.cmd declared as JobModifier and TypeFieldDescriptionprotected JobLockExclusiveJobCmd.jobprotected JobUnlockExclusiveJobCmd.jobMethods in org.activiti.engine.impl.cmd with parameters of type JobModifier and TypeMethodDescriptionprotected voidExecuteAsyncJobCmd.executeInternal(CommandContext commandContext, Job job) protected voidExecuteJobCmd.executeInternal(CommandContext commandContext, Job job) protected voidHandleFailedJobCmd.executeInternal(CommandContext commandContext, Job job) Constructors in org.activiti.engine.impl.cmd with parameters of type Job -
Uses of Job in org.activiti.engine.impl.jobexecutor
Fields in org.activiti.engine.impl.jobexecutor declared as JobConstructors in org.activiti.engine.impl.jobexecutor with parameters of type Job -
Uses of Job in org.activiti.engine.impl.persistence.entity
Subinterfaces of Job in org.activiti.engine.impl.persistence.entityModifier and TypeInterfaceDescriptioninterfaceinterfaceSuspended jobs are stored separately to increase the normal job query performanceinterfaceRepresents an async job: a piece of logic that needs to be executed asynchronously.interfaceSuspended jobs are stored separately to increase the normal job query performanceinterfaceStub of the common parts of a Job.Classes in org.activiti.engine.impl.persistence.entity that implement JobModifier and TypeClassDescriptionclassAbstract job entity class.classDeadLetterJob entity, necessary for persistence.classJob entity.classTimerJob entity, necessary for persistence.classTimerJob entity, necessary for persistence.Methods in org.activiti.engine.impl.persistence.entity that return types with arguments of type JobModifier and TypeMethodDescriptionDeadLetterJobEntityManager.findJobsByQueryCriteria(DeadLetterJobQueryImpl jobQuery, Page page) Executes aJobQueryImpland returns the matchingDeadLetterJobEntityinstances.DeadLetterJobEntityManagerImpl.findJobsByQueryCriteria(DeadLetterJobQueryImpl jobQuery, Page page) JobEntityManager.findJobsByQueryCriteria(JobQueryImpl jobQuery, Page page) Executes aJobQueryImpland returns the matchingJobEntityinstances.JobEntityManagerImpl.findJobsByQueryCriteria(JobQueryImpl jobQuery, Page page) SuspendedJobEntityManager.findJobsByQueryCriteria(SuspendedJobQueryImpl jobQuery, Page page) Executes aJobQueryImpland returns the matchingSuspendedJobEntityinstances.SuspendedJobEntityManagerImpl.findJobsByQueryCriteria(SuspendedJobQueryImpl jobQuery, Page page) TimerJobEntityManager.findJobsByQueryCriteria(TimerJobQueryImpl jobQuery, Page page) Executes aJobQueryImpland returns the matchingTimerJobEntityinstances.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 JobModifier and TypeMethodDescriptionDeadLetterJobDataManager.findJobsByQueryCriteria(DeadLetterJobQueryImpl jobQuery, Page page) JobDataManager.findJobsByQueryCriteria(JobQueryImpl jobQuery, Page page) SuspendedJobDataManager.findJobsByQueryCriteria(SuspendedJobQueryImpl jobQuery, Page page) 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 JobModifier and TypeMethodDescriptionMybatisDeadLetterJobDataManager.findJobsByQueryCriteria(DeadLetterJobQueryImpl jobQuery, Page page) MybatisJobDataManager.findJobsByQueryCriteria(JobQueryImpl jobQuery, Page page) MybatisSuspendedJobDataManager.findJobsByQueryCriteria(SuspendedJobQueryImpl jobQuery, Page page) MybatisTimerJobDataManager.findJobsByQueryCriteria(TimerJobQueryImpl jobQuery, Page page)