Uses of Interface
org.flowable.common.engine.api.delegate.event.FlowableEventListener
Packages that use FlowableEventListener
Package
Description
Public API of the Flowable 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 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.-
Uses of FlowableEventListener in org.flowable.cmmn.api
Methods in org.flowable.cmmn.api with parameters of type FlowableEventListenerModifier and TypeMethodDescriptionvoidCmmnRuntimeService.addEventListener(FlowableEventListener listenerToAdd) Adds an event-listener which will be notified of ALL events by the dispatcher.voidCmmnRuntimeService.addEventListener(FlowableEventListener listenerToAdd, FlowableEngineEventType... types) Adds an event-listener which will only be notified when an event occurs, which type is in the given types.voidCmmnRuntimeService.removeEventListener(FlowableEventListener listenerToRemove) Removes the given listener from this dispatcher. -
Uses of FlowableEventListener in org.flowable.common.engine.api.delegate.event
Classes in org.flowable.common.engine.api.delegate.event that implement FlowableEventListenerMethods in org.flowable.common.engine.api.delegate.event with parameters of type FlowableEventListenerModifier and TypeMethodDescriptionvoidFlowableEventDispatcher.addEventListener(FlowableEventListener listenerToAdd) Adds an event-listener which will be notified of ALL events by the dispatcher.voidFlowableEventDispatcher.addEventListener(FlowableEventListener listenerToAdd, FlowableEventType... types) Adds an event-listener which will only be notified when an event of the given types occurs.voidFlowableEventDispatcher.removeEventListener(FlowableEventListener listenerToRemove) Removes the given listener from this dispatcher. -
Uses of FlowableEventListener in org.flowable.engine
Methods in org.flowable.engine with parameters of type FlowableEventListenerModifier and TypeMethodDescriptionvoidRuntimeService.addEventListener(FlowableEventListener listenerToAdd) Adds an event-listener which will be notified of ALL events by the dispatcher.voidRuntimeService.addEventListener(FlowableEventListener listenerToAdd, FlowableEngineEventType... types) Adds an event-listener which will only be notified when an event occurs, which type is in the given types.voidRuntimeService.removeEventListener(FlowableEventListener listenerToRemove) Removes the given listener from this dispatcher. -
Uses of FlowableEventListener in org.flowable.engine.delegate.event
Classes in org.flowable.engine.delegate.event that implement FlowableEventListenerModifier and TypeClassDescriptionclassclassBase event listener that can be used when implementing anFlowableEventListenerto get notified when an entity is created, updated, deleted or if another entity-related event occurs. -
Uses of FlowableEventListener in org.flowable.engine.test.impl.logger
Classes in org.flowable.engine.test.impl.logger that implement FlowableEventListener