Uses of Interface
org.activiti.engine.runtime.SuspendedJobQuery
-
Packages that use SuspendedJobQuery 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 SuspendedJobQuery in org.activiti.engine
Methods in org.activiti.engine that return SuspendedJobQuery Modifier and Type Method Description SuspendedJobQueryManagementService. createSuspendedJobQuery()Returns a new SuspendedJobQuery implementation, that can be used to dynamically query the suspended jobs. -
Uses of SuspendedJobQuery in org.activiti.engine.impl
Classes in org.activiti.engine.impl that implement SuspendedJobQuery Modifier and Type Class Description classSuspendedJobQueryImplMethods in org.activiti.engine.impl that return SuspendedJobQuery Modifier and Type Method Description SuspendedJobQueryManagementServiceImpl. createSuspendedJobQuery()SuspendedJobQuerySuspendedJobQueryImpl. orderByExecutionId()SuspendedJobQuerySuspendedJobQueryImpl. orderByJobDuedate()SuspendedJobQuerySuspendedJobQueryImpl. orderByJobId()SuspendedJobQuerySuspendedJobQueryImpl. orderByJobRetries()SuspendedJobQuerySuspendedJobQueryImpl. orderByProcessInstanceId()SuspendedJobQuerySuspendedJobQueryImpl. orderByTenantId() -
Uses of SuspendedJobQuery in org.activiti.engine.runtime
Methods in org.activiti.engine.runtime that return SuspendedJobQuery Modifier and Type Method Description SuspendedJobQuerySuspendedJobQuery. duedateHigherThan(java.util.Date date)Only select jobs where the duedate is higher then the given date.SuspendedJobQuerySuspendedJobQuery. duedateLowerThan(java.util.Date date)Only select jobs where the duedate is lower than the given date.SuspendedJobQuerySuspendedJobQuery. exceptionMessage(java.lang.String exceptionMessage)Only select jobs that failed due to an exception with the given message.SuspendedJobQuerySuspendedJobQuery. executable()Only select jobs which are executable, ie.SuspendedJobQuerySuspendedJobQuery. executionId(java.lang.String executionId)Only select jobs which exist for the given executionSuspendedJobQuerySuspendedJobQuery. jobId(java.lang.String jobId)Only select jobs with the given idSuspendedJobQuerySuspendedJobQuery. jobTenantId(java.lang.String tenantId)Only select jobs that have the given tenant id.SuspendedJobQuerySuspendedJobQuery. jobTenantIdLike(java.lang.String tenantIdLike)Only select jobs with a tenant id like the given one.SuspendedJobQuerySuspendedJobQuery. jobWithoutTenantId()Only select jobs that do not have a tenant id.SuspendedJobQuerySuspendedJobQuery. messages()Only select jobs that are messages.SuspendedJobQuerySuspendedJobQuery. noRetriesLeft()Only select jobs which have no retries leftSuspendedJobQuerySuspendedJobQuery. orderByExecutionId()Order by execution id (needs to be followed byQuery.asc()orQuery.desc()).SuspendedJobQuerySuspendedJobQuery. orderByJobDuedate()Order by duedate (needs to be followed byQuery.asc()orQuery.desc()).SuspendedJobQuerySuspendedJobQuery. orderByJobId()Order by job id (needs to be followed byQuery.asc()orQuery.desc()).SuspendedJobQuerySuspendedJobQuery. orderByJobRetries()Order by retries (needs to be followed byQuery.asc()orQuery.desc()).SuspendedJobQuerySuspendedJobQuery. orderByProcessInstanceId()Order by process instance id (needs to be followed byQuery.asc()orQuery.desc()).SuspendedJobQuerySuspendedJobQuery. orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).SuspendedJobQuerySuspendedJobQuery. processDefinitionId(java.lang.String processDefinitionid)Only select jobs which exist for the given process definition idSuspendedJobQuerySuspendedJobQuery. processInstanceId(java.lang.String processInstanceId)Only select jobs which exist for the given process instance.SuspendedJobQuerySuspendedJobQuery. timers()Only select jobs that are timers.SuspendedJobQuerySuspendedJobQuery. withException()Only select jobs that failed due to an exception.SuspendedJobQuerySuspendedJobQuery. withRetriesLeft()Only select jobs which have retries left
-