| Package | Description |
|---|---|
| org.flowable.cmmn.engine | |
| org.flowable.cmmn.engine.impl.eventregistry | |
| org.flowable.common.engine.impl | |
| org.flowable.engine |
Public API of the Flowable engine.
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 Deployments.RuntimeService: For starting and searching ProcessInstances.TaskService: Exposes operations to manage human (standalone) tasks, such as claiming, completing and assigning tasks.IdentityService: Used for managing users, groups and the relations between them.ManagementService: Exposes engine administration and maintenance operations,
which have no relation to the runtime exection 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.flowable.engine.impl |
API implementation classes, which shouldn't directly be used by end-users.
|
| org.flowable.engine.impl.cfg | |
| org.flowable.engine.impl.cmd | |
| org.flowable.engine.impl.eventregistry | |
| org.flowable.eventregistry.api | |
| org.flowable.eventregistry.impl | |
| org.flowable.eventregistry.impl.consumer |
| Modifier and Type | Field and Description |
|---|---|
protected EventRegistryEventConsumer |
CmmnEngineConfiguration.eventRegistryEventConsumer |
| Modifier and Type | Method and Description |
|---|---|
EventRegistryEventConsumer |
CmmnEngineConfiguration.getEventRegistryEventConsumer() |
| Modifier and Type | Method and Description |
|---|---|
CmmnEngineConfiguration |
CmmnEngineConfiguration.setEventRegistryEventConsumer(EventRegistryEventConsumer eventRegistryEventConsumer) |
| Modifier and Type | Class and Description |
|---|---|
class |
CmmnEventRegistryEventConsumer |
| Modifier and Type | Field and Description |
|---|---|
protected Map<String,EventRegistryEventConsumer> |
AbstractEngineConfiguration.eventRegistryEventConsumers |
| Modifier and Type | Method and Description |
|---|---|
Map<String,EventRegistryEventConsumer> |
AbstractEngineConfiguration.getEventRegistryEventConsumers() |
| Modifier and Type | Method and Description |
|---|---|
void |
AbstractEngineConfiguration.addEventRegistryEventConsumer(String key,
EventRegistryEventConsumer eventRegistryEventConsumer) |
| Modifier and Type | Method and Description |
|---|---|
AbstractEngineConfiguration |
AbstractEngineConfiguration.setEventRegistryEventConsumers(Map<String,EventRegistryEventConsumer> eventRegistryEventConsumers) |
| Modifier and Type | Method and Description |
|---|---|
void |
RuntimeService.addEventRegistryConsumer(EventRegistryEventConsumer eventConsumer) |
void |
RuntimeService.removeEventRegistryConsumer(EventRegistryEventConsumer eventConsumer) |
| Modifier and Type | Method and Description |
|---|---|
void |
RuntimeServiceImpl.addEventRegistryConsumer(EventRegistryEventConsumer eventConsumer) |
void |
RuntimeServiceImpl.removeEventRegistryConsumer(EventRegistryEventConsumer eventConsumer) |
| Modifier and Type | Field and Description |
|---|---|
protected EventRegistryEventConsumer |
ProcessEngineConfigurationImpl.eventRegistryEventConsumer |
| Modifier and Type | Method and Description |
|---|---|
EventRegistryEventConsumer |
ProcessEngineConfigurationImpl.getEventRegistryEventConsumer() |
| Modifier and Type | Method and Description |
|---|---|
ProcessEngineConfigurationImpl |
ProcessEngineConfigurationImpl.setEventRegistryEventConsumer(EventRegistryEventConsumer eventRegistryEventConsumer) |
| Modifier and Type | Field and Description |
|---|---|
protected EventRegistryEventConsumer |
RemoveEventConsumerCommand.eventConsumer |
protected EventRegistryEventConsumer |
AddEventConsumerCommand.eventConsumer |
| Constructor and Description |
|---|
AddEventConsumerCommand(EventRegistryEventConsumer eventConsumer) |
RemoveEventConsumerCommand(EventRegistryEventConsumer eventConsumer) |
| Modifier and Type | Class and Description |
|---|---|
class |
BpmnEventRegistryEventConsumer |
| Modifier and Type | Method and Description |
|---|---|
void |
EventRegistry.registerEventRegistryEventConsumer(EventRegistryEventConsumer eventRegistryEventBusConsumer)
Registers a
EventRegistryEventConsumer instance (a consumer of event registry events which
is created by any of the engines). |
void |
EventRegistry.removeFlowableEventRegistryEventConsumer(EventRegistryEventConsumer eventRegistryEventBusConsumer)
Removes the event consumer from the event registry
|
| Modifier and Type | Method and Description |
|---|---|
void |
DefaultEventRegistry.registerEventRegistryEventConsumer(EventRegistryEventConsumer eventRegistryEventBusConsumer) |
void |
DefaultEventRegistry.removeFlowableEventRegistryEventConsumer(EventRegistryEventConsumer eventRegistryEventBusConsumer) |
| Modifier and Type | Class and Description |
|---|---|
class |
BaseEventRegistryEventConsumer |
Copyright © 2023 Flowable. All rights reserved.