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