Uses of Interface
org.activiti.engine.runtime.TimerJobQuery
Packages that use TimerJobQuery
-
Uses of TimerJobQuery in org.activiti.engine
Methods in org.activiti.engine that return TimerJobQueryModifier and TypeMethodDescriptionManagementService.createTimerJobQuery()Returns a new TimerJobQuery implementation, that can be used to dynamically query the timer jobs. -
Uses of TimerJobQuery in org.activiti.engine.impl
Classes in org.activiti.engine.impl that implement TimerJobQueryMethods in org.activiti.engine.impl that return TimerJobQueryModifier and TypeMethodDescriptionManagementServiceImpl.createTimerJobQuery()TimerJobQueryImpl.orderByExecutionId()TimerJobQueryImpl.orderByJobDuedate()TimerJobQueryImpl.orderByJobId()TimerJobQueryImpl.orderByJobRetries()TimerJobQueryImpl.orderByProcessInstanceId()TimerJobQueryImpl.orderByTenantId() -
Uses of TimerJobQuery in org.activiti.engine.runtime
Methods in org.activiti.engine.runtime that return TimerJobQueryModifier and TypeMethodDescriptionTimerJobQuery.duedateHigherThan(Date date) Only select jobs where the duedate is higher then the given date.TimerJobQuery.duedateLowerThan(Date date) Only select jobs where the duedate is lower than the given date.TimerJobQuery.exceptionMessage(String exceptionMessage) Only select jobs that failed due to an exception with the given message.TimerJobQuery.executable()Only select jobs which are executable, ie.TimerJobQuery.executionId(String executionId) Only select jobs which exist for the given executionOnly select jobs with the given idTimerJobQuery.jobTenantId(String tenantId) Only select jobs that have the given tenant id.TimerJobQuery.jobTenantIdLike(String tenantIdLike) Only select jobs with a tenant id like the given one.TimerJobQuery.jobWithoutTenantId()Only select jobs that do not have a tenant id.TimerJobQuery.messages()Only select jobs that are messages.TimerJobQuery.orderByExecutionId()Order by execution id (needs to be followed byQuery.asc()orQuery.desc()).TimerJobQuery.orderByJobDuedate()Order by duedate (needs to be followed byQuery.asc()orQuery.desc()).TimerJobQuery.orderByJobId()Order by job id (needs to be followed byQuery.asc()orQuery.desc()).TimerJobQuery.orderByJobRetries()Order by retries (needs to be followed byQuery.asc()orQuery.desc()).TimerJobQuery.orderByProcessInstanceId()Order by process instance id (needs to be followed byQuery.asc()orQuery.desc()).TimerJobQuery.orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).TimerJobQuery.processDefinitionId(String processDefinitionid) Only select jobs which exist for the given process definition idTimerJobQuery.processInstanceId(String processInstanceId) Only select jobs which exist for the given process instance.TimerJobQuery.timers()Only select jobs that are timers.TimerJobQuery.withException()Only select jobs that failed due to an exception.