Package org.flowable.job.api
Interface DeadLetterJobQuery
-
- All Superinterfaces:
BaseJobQuery<DeadLetterJobQuery,Job>,Query<DeadLetterJobQuery,Job>
public interface DeadLetterJobQuery extends BaseJobQuery<DeadLetterJobQuery,Job>
Allows programmatic querying ofJobs.- Author:
- Joram Barrez, Tijs Rademakers
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeadLetterJobQueryexecutable()Only select jobs which are executable, ie.DeadLetterJobQueryexternalWorkers()Only select external worker jobs.DeadLetterJobQuerymessages()Only select jobs that are messages.DeadLetterJobQuerytimers()Only select jobs that are timers.-
Methods inherited from interface org.flowable.job.api.BaseJobQuery
caseDefinitionId, caseInstanceId, category, categoryLike, correlationId, duedateHigherThan, duedateLowerThan, elementId, elementName, exceptionMessage, executionId, handlerType, handlerTypes, jobId, jobIds, jobTenantId, jobTenantIdLike, jobWithoutTenantId, orderByExecutionId, orderByJobCreateTime, orderByJobDuedate, orderByJobId, orderByJobRetries, orderByProcessInstanceId, orderByTenantId, planItemInstanceId, processDefinitionId, processInstanceId, scopeDefinitionId, scopeId, scopeType, subScopeId, withException, withoutProcessInstanceId, withoutScopeId, withoutScopeType
-
-
-
-
Method Detail
-
executable
DeadLetterJobQuery executable()
Only select jobs which are executable, ie. duedate is null or duedate is in the past
-
timers
DeadLetterJobQuery timers()
Only select jobs that are timers. Cannot be used together withmessages()orexternalWorkers()
-
messages
DeadLetterJobQuery messages()
Only select jobs that are messages. Cannot be used together withtimers()orexternalWorkers()
-
externalWorkers
DeadLetterJobQuery externalWorkers()
Only select external worker jobs. Cannot be used together withtimers()ormessages()
-
-