Uses of Interface
org.camunda.bpm.engine.runtime.EventSubscriptionQuery
Package
Description
Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
Typical usage of the API starts by the creation of a
ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine
can be obtained.Through the services obtained from such a
ProcessEngine
, BPM and workflow operation
can be executed:RepositoryService
:
Manages Deployment
sRuntimeService
:
For starting and searching ProcessInstance
sTaskService
:
Exposes operations to manage human (standalone) Task
s,
such as claiming, completing and assigning tasksIdentityService
:
Used for managing User
s,
Group
s and the relations between themManagementService
:
Exposes engine admin and maintenance operations,
which have no relation to the runtime execution of business processesHistoryService
:
Exposes information about ongoing and past process instances.FormService
:
Access to form data and rendered forms for starting new process instances and completing tasks.API implementation classes, which shouldn't directly be used by end-users.
Classes related to the
RuntimeService
.-
Uses of EventSubscriptionQuery in org.camunda.bpm.engine
Modifier and TypeMethodDescriptionRuntimeService.createEventSubscriptionQuery()
Creates a newEventSubscriptionQuery
instance, that can be used to query event subscriptions. -
Uses of EventSubscriptionQuery in org.camunda.bpm.engine.impl
Modifier and TypeMethodDescriptionRuntimeServiceImpl.createEventSubscriptionQuery()
EventSubscriptionQueryImpl.eventSubscriptionId
(String id) EventSubscriptionQueryImpl.includeEventSubscriptionsWithoutTenantId()
EventSubscriptionQueryImpl.orderByCreated()
EventSubscriptionQueryImpl.orderByTenantId()
EventSubscriptionQueryImpl.processInstanceId
(String processInstanceId) EventSubscriptionQueryImpl.tenantIdIn
(String... tenantIds) EventSubscriptionQueryImpl.withoutTenantId()
-
Uses of EventSubscriptionQuery in org.camunda.bpm.engine.rest.dto.runtime
Modifier and TypeMethodDescriptionprotected EventSubscriptionQuery
EventSubscriptionQueryDto.createNewQuery
(ProcessEngine engine) Modifier and TypeMethodDescriptionprotected void
EventSubscriptionQueryDto.applyFilters
(EventSubscriptionQuery query) protected void
EventSubscriptionQueryDto.applySortBy
(EventSubscriptionQuery query, String sortBy, Map<String, Object> parameters, ProcessEngine engine) -
Uses of EventSubscriptionQuery in org.camunda.bpm.engine.runtime
Modifier and TypeMethodDescriptionEventSubscriptionQuery.activityId
(String activityId) Only select subscriptions that belong to an activity with the given id.Only select subscriptions for events with the given name.EventSubscriptionQuery.eventSubscriptionId
(String id) Only select subscriptions with the given id.Only select subscriptions for events with the given type.EventSubscriptionQuery.executionId
(String executionId) Only select subscriptions that belong to an execution with the given id.EventSubscriptionQuery.includeEventSubscriptionsWithoutTenantId()
Select subscriptions which have no tenant id.EventSubscriptionQuery.orderByCreated()
Order by event subscription creation date (needs to be followed byQuery.asc()
orQuery.desc()
).EventSubscriptionQuery.orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).EventSubscriptionQuery.processInstanceId
(String processInstanceId) Only select subscriptions that belong to a process instance with the given id.EventSubscriptionQuery.tenantIdIn
(String... tenantIds) Only select subscriptions that belong to one of the given tenant ids.EventSubscriptionQuery.withoutTenantId()
Only select subscriptions which have no tenant id.