Uses of Interface
org.activiti.engine.runtime.DeadLetterJobQuery
-
Packages that use DeadLetterJobQuery Package Description org.activiti.engine Public API of the Activiti engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
org.activiti.engine.IdentityService: Used for managingorg.activiti.engine.identity.Users,org.activiti.engine.identity.Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime exection of business processes
HistoryService: Exposes information about ongoing and past process instances.
org.activiti.engine.FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.activiti.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.activiti.engine.runtime Classes related to theRuntimeService. -
-
Uses of DeadLetterJobQuery in org.activiti.engine
Methods in org.activiti.engine that return DeadLetterJobQuery Modifier and Type Method Description DeadLetterJobQueryManagementService. 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 DeadLetterJobQuery Modifier and Type Class Description classDeadLetterJobQueryImplMethods in org.activiti.engine.impl that return DeadLetterJobQuery Modifier and Type Method Description DeadLetterJobQueryManagementServiceImpl. createDeadLetterJobQuery()DeadLetterJobQueryDeadLetterJobQueryImpl. orderByExecutionId()DeadLetterJobQueryDeadLetterJobQueryImpl. orderByJobDuedate()DeadLetterJobQueryDeadLetterJobQueryImpl. orderByJobId()DeadLetterJobQueryDeadLetterJobQueryImpl. orderByJobRetries()DeadLetterJobQueryDeadLetterJobQueryImpl. orderByProcessInstanceId()DeadLetterJobQueryDeadLetterJobQueryImpl. orderByTenantId() -
Uses of DeadLetterJobQuery in org.activiti.engine.runtime
Methods in org.activiti.engine.runtime that return DeadLetterJobQuery Modifier and Type Method Description DeadLetterJobQueryDeadLetterJobQuery. duedateHigherThan(java.util.Date date)Only select jobs where the duedate is higher then the given date.DeadLetterJobQueryDeadLetterJobQuery. duedateLowerThan(java.util.Date date)Only select jobs where the duedate is lower than the given date.DeadLetterJobQueryDeadLetterJobQuery. exceptionMessage(java.lang.String exceptionMessage)Only select jobs that failed due to an exception with the given message.DeadLetterJobQueryDeadLetterJobQuery. executable()Only select jobs which are executable, ie.DeadLetterJobQueryDeadLetterJobQuery. executionId(java.lang.String executionId)Only select jobs which exist for the given executionDeadLetterJobQueryDeadLetterJobQuery. jobId(java.lang.String jobId)Only select jobs with the given idDeadLetterJobQueryDeadLetterJobQuery. jobTenantId(java.lang.String tenantId)Only select jobs that have the given tenant id.DeadLetterJobQueryDeadLetterJobQuery. jobTenantIdLike(java.lang.String tenantIdLike)Only select jobs with a tenant id like the given one.DeadLetterJobQueryDeadLetterJobQuery. jobWithoutTenantId()Only select jobs that do not have a tenant id.DeadLetterJobQueryDeadLetterJobQuery. messages()Only select jobs that are messages.DeadLetterJobQueryDeadLetterJobQuery. orderByExecutionId()Order by execution id (needs to be followed byQuery.asc()orQuery.desc()).DeadLetterJobQueryDeadLetterJobQuery. orderByJobDuedate()Order by duedate (needs to be followed byQuery.asc()orQuery.desc()).DeadLetterJobQueryDeadLetterJobQuery. orderByJobId()Order by job id (needs to be followed byQuery.asc()orQuery.desc()).DeadLetterJobQueryDeadLetterJobQuery. orderByJobRetries()Order by retries (needs to be followed byQuery.asc()orQuery.desc()).DeadLetterJobQueryDeadLetterJobQuery. orderByProcessInstanceId()Order by process instance id (needs to be followed byQuery.asc()orQuery.desc()).DeadLetterJobQueryDeadLetterJobQuery. orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).DeadLetterJobQueryDeadLetterJobQuery. processDefinitionId(java.lang.String processDefinitionid)Only select jobs which exist for the given process definition idDeadLetterJobQueryDeadLetterJobQuery. processInstanceId(java.lang.String processInstanceId)Only select jobs which exist for the given process instance.DeadLetterJobQueryDeadLetterJobQuery. timers()Only select jobs that are timers.DeadLetterJobQueryDeadLetterJobQuery. withException()Only select jobs that failed due to an exception.
-