Uses of Interface
org.operaton.bpm.engine.runtime.EventSubscriptionQuery
Packages that use EventSubscriptionQuery
Package
Description
Public API of the Operaton engine.
Typical usage of the API starts by the creation of 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.API implementation classes, which shouldn't directly be used by end-users.
Classes related to the
RuntimeService.-
Uses of EventSubscriptionQuery in org.operaton.bpm.engine
Methods in org.operaton.bpm.engine that return EventSubscriptionQueryModifier and TypeMethodDescriptionRuntimeService.createEventSubscriptionQuery()Creates a newEventSubscriptionQueryinstance, that can be used to query event subscriptions. -
Uses of EventSubscriptionQuery in org.operaton.bpm.engine.impl
Classes in org.operaton.bpm.engine.impl that implement EventSubscriptionQueryMethods in org.operaton.bpm.engine.impl that return EventSubscriptionQueryModifier 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.operaton.bpm.engine.rest.dto.runtime
Methods in org.operaton.bpm.engine.rest.dto.runtime that return EventSubscriptionQueryModifier and TypeMethodDescriptionprotected EventSubscriptionQueryEventSubscriptionQueryDto.createNewQuery(ProcessEngine engine) Methods in org.operaton.bpm.engine.rest.dto.runtime with parameters of type EventSubscriptionQueryModifier and TypeMethodDescriptionprotected voidEventSubscriptionQueryDto.applyFilters(EventSubscriptionQuery query) protected voidEventSubscriptionQueryDto.applySortBy(EventSubscriptionQuery query, String sortBy, Map<String, Object> parameters, ProcessEngine engine) -
Uses of EventSubscriptionQuery in org.operaton.bpm.engine.runtime
Methods in org.operaton.bpm.engine.runtime that return EventSubscriptionQueryModifier 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.