Uses of Interface
org.activiti.engine.runtime.JobQuery
Packages that use JobQuery
-
Uses of JobQuery in org.activiti.engine
Methods in org.activiti.engine that return JobQueryModifier and TypeMethodDescriptionManagementService.createJobQuery()Returns a new JobQuery implementation, that can be used to dynamically query the jobs. -
Uses of JobQuery in org.activiti.engine.impl
Classes in org.activiti.engine.impl that implement JobQueryMethods in org.activiti.engine.impl that return JobQueryModifier and TypeMethodDescriptionManagementServiceImpl.createJobQuery()JobQueryImpl.duedateHigherThan(Date date) JobQueryImpl.duedateHigherThen(Date date) JobQueryImpl.duedateHigherThenOrEquals(Date date) JobQueryImpl.duedateLowerThan(Date date) JobQueryImpl.duedateLowerThen(Date date) JobQueryImpl.duedateLowerThenOrEquals(Date date) JobQueryImpl.exceptionMessage(String exceptionMessage) JobQueryImpl.executable()JobQueryImpl.jobTenantId(String tenantId) JobQueryImpl.jobTenantIdLike(String tenantIdLike) JobQueryImpl.jobWithoutTenantId()JobQueryImpl.locked()JobQueryImpl.messages()JobQueryImpl.noRetriesLeft()JobQueryImpl.orderByExecutionId()JobQueryImpl.orderByJobDuedate()JobQueryImpl.orderByJobId()JobQueryImpl.orderByJobRetries()JobQueryImpl.orderByProcessInstanceId()JobQueryImpl.orderByTenantId()JobQueryImpl.timers()JobQueryImpl.unlocked()JobQueryImpl.withException()JobQueryImpl.withRetriesLeft() -
Uses of JobQuery in org.activiti.engine.runtime
Methods in org.activiti.engine.runtime that return JobQueryModifier and TypeMethodDescriptionJobQuery.duedateHigherThan(Date date) Only select jobs where the duedate is higher then the given date.JobQuery.duedateLowerThan(Date date) Only select jobs where the duedate is lower than the given date.JobQuery.exceptionMessage(String exceptionMessage) Only select jobs that failed due to an exception with the given message.JobQuery.executionId(String executionId) Only select jobs which exist for the given executionOnly select jobs with the given idJobQuery.jobTenantId(String tenantId) Only select jobs that have the given tenant id.JobQuery.jobTenantIdLike(String tenantIdLike) Only select jobs with a tenant id like the given one.JobQuery.jobWithoutTenantId()Only select jobs that do not have a tenant id.JobQuery.locked()Only return jobs that are locked (i.e.JobQuery.messages()Only select jobs that are messages.JobQuery.orderByExecutionId()Order by execution id (needs to be followed byQuery.asc()orQuery.desc()).JobQuery.orderByJobDuedate()Order by duedate (needs to be followed byQuery.asc()orQuery.desc()).JobQuery.orderByJobId()Order by job id (needs to be followed byQuery.asc()orQuery.desc()).JobQuery.orderByJobRetries()Order by retries (needs to be followed byQuery.asc()orQuery.desc()).JobQuery.orderByProcessInstanceId()Order by process instance id (needs to be followed byQuery.asc()orQuery.desc()).JobQuery.orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).JobQuery.processDefinitionId(String processDefinitionid) Only select jobs which exist for the given process definition idJobQuery.processInstanceId(String processInstanceId) Only select jobs which exist for the given process instance.JobQuery.timers()Only select jobs that are timers.JobQuery.unlocked()Only return jobs that are not locked.JobQuery.withException()Only select jobs that failed due to an exception.