Uses of Interface
org.camunda.bpm.engine.runtime.EventSubscriptionQuery
-
Packages that use EventSubscriptionQuery Package Description org.camunda.bpm.engine Public API of the Camunda Platform 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
IdentityService: Used for managingUsers,Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService: Exposes information about ongoing and past process instances.
FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.rest.dto.runtime org.camunda.bpm.engine.runtime Classes related to theRuntimeService. -
-
Uses of EventSubscriptionQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return EventSubscriptionQuery Modifier and Type Method Description EventSubscriptionQueryRuntimeService. createEventSubscriptionQuery()Creates a newEventSubscriptionQueryinstance, that can be used to query event subscriptions. -
Uses of EventSubscriptionQuery in org.camunda.bpm.engine.impl
Classes in org.camunda.bpm.engine.impl that implement EventSubscriptionQuery Modifier and Type Class Description classEventSubscriptionQueryImplMethods in org.camunda.bpm.engine.impl that return EventSubscriptionQuery Modifier and Type Method Description EventSubscriptionQueryRuntimeServiceImpl. createEventSubscriptionQuery()EventSubscriptionQueryEventSubscriptionQueryImpl. eventName(java.lang.String eventName)EventSubscriptionQueryEventSubscriptionQueryImpl. eventSubscriptionId(java.lang.String id)EventSubscriptionQueryEventSubscriptionQueryImpl. includeEventSubscriptionsWithoutTenantId()EventSubscriptionQueryEventSubscriptionQueryImpl. orderByCreated()EventSubscriptionQueryEventSubscriptionQueryImpl. orderByTenantId()EventSubscriptionQueryEventSubscriptionQueryImpl. processInstanceId(java.lang.String processInstanceId)EventSubscriptionQueryEventSubscriptionQueryImpl. tenantIdIn(java.lang.String... tenantIds)EventSubscriptionQueryEventSubscriptionQueryImpl. withoutTenantId() -
Uses of EventSubscriptionQuery in org.camunda.bpm.engine.rest.dto.runtime
Methods in org.camunda.bpm.engine.rest.dto.runtime that return EventSubscriptionQuery Modifier and Type Method Description protected EventSubscriptionQueryEventSubscriptionQueryDto. createNewQuery(ProcessEngine engine)Methods in org.camunda.bpm.engine.rest.dto.runtime with parameters of type EventSubscriptionQuery Modifier and Type Method Description protected voidEventSubscriptionQueryDto. applyFilters(EventSubscriptionQuery query)protected voidEventSubscriptionQueryDto. applySortBy(EventSubscriptionQuery query, java.lang.String sortBy, java.util.Map<java.lang.String,java.lang.Object> parameters, ProcessEngine engine) -
Uses of EventSubscriptionQuery in org.camunda.bpm.engine.runtime
Methods in org.camunda.bpm.engine.runtime that return EventSubscriptionQuery Modifier and Type Method Description EventSubscriptionQueryEventSubscriptionQuery. activityId(java.lang.String activityId)Only select subscriptions that belong to an activity with the given id.EventSubscriptionQueryEventSubscriptionQuery. eventName(java.lang.String eventName)Only select subscriptions for events with the given name.EventSubscriptionQueryEventSubscriptionQuery. eventSubscriptionId(java.lang.String id)Only select subscriptions with the given id.EventSubscriptionQueryEventSubscriptionQuery. eventType(java.lang.String eventType)Only select subscriptions for events with the given type.EventSubscriptionQueryEventSubscriptionQuery. executionId(java.lang.String executionId)Only select subscriptions that belong to an execution with the given id.EventSubscriptionQueryEventSubscriptionQuery. includeEventSubscriptionsWithoutTenantId()Select subscriptions which have no tenant id.EventSubscriptionQueryEventSubscriptionQuery. orderByCreated()Order by event subscription creation date (needs to be followed byQuery.asc()orQuery.desc()).EventSubscriptionQueryEventSubscriptionQuery. orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).EventSubscriptionQueryEventSubscriptionQuery. processInstanceId(java.lang.String processInstanceId)Only select subscriptions that belong to a process instance with the given id.EventSubscriptionQueryEventSubscriptionQuery. tenantIdIn(java.lang.String... tenantIds)Only select subscriptions that belong to one of the given tenant ids.EventSubscriptionQueryEventSubscriptionQuery. withoutTenantId()Only select subscriptions which have no tenant id.
-