Uses of Enum Class
org.flowable.common.engine.api.delegate.event.FlowableEngineEventType
Packages that use FlowableEngineEventType
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 FlowableEngineEventType in org.flowable.cmmn.api
Methods in org.flowable.cmmn.api with parameters of type FlowableEngineEventTypeModifier and TypeMethodDescriptionvoidCmmnRuntimeService.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. -
Uses of FlowableEngineEventType in org.flowable.common.engine.api.delegate.event
Fields in org.flowable.common.engine.api.delegate.event declared as FlowableEngineEventTypeModifier and TypeFieldDescriptionstatic final FlowableEngineEventType[]FlowableEngineEventType.EMPTY_ARRAYMethods in org.flowable.common.engine.api.delegate.event that return FlowableEngineEventTypeModifier and TypeMethodDescriptionstatic FlowableEngineEventType[]FlowableEngineEventType.getTypesFromString(String string) static FlowableEngineEventTypeReturns the enum constant of this class with the specified name.static FlowableEngineEventType[]FlowableEngineEventType.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of FlowableEngineEventType in org.flowable.engine
Methods in org.flowable.engine with parameters of type FlowableEngineEventTypeModifier and TypeMethodDescriptionvoidRuntimeService.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. -
Uses of FlowableEngineEventType in org.flowable.engine.delegate.event
Fields in org.flowable.engine.delegate.event with type parameters of type FlowableEngineEventTypeModifier and TypeFieldDescriptionprotected Set<FlowableEngineEventType> AbstractFlowableEngineEventListener.typesConstructor parameters in org.flowable.engine.delegate.event with type arguments of type FlowableEngineEventTypeModifierConstructorDescription -
Uses of FlowableEngineEventType in org.flowable.engine.delegate.event.impl
Methods in org.flowable.engine.delegate.event.impl with parameters of type FlowableEngineEventTypeModifier and TypeMethodDescriptionstatic FlowableActivityEventFlowableEventBuilder.createActivityEvent(FlowableEngineEventType type, String activityId, String activityName, String executionId, String processInstanceId, String processDefinitionId, FlowElement flowElement) static FlowableConditionalEventFlowableEventBuilder.createConditionalEvent(FlowableEngineEventType type, String activityId, String conditionExpression, String conditionLanguage, String executionId, String processInstanceId, String processDefinitionId) static FlowableEntityEventFlowableEventBuilder.createEntityEvent(FlowableEngineEventType type, Object entity) static FlowableEntityEventFlowableEventBuilder.createEntityEvent(FlowableEngineEventType type, Object entity, String executionId, String processInstanceId, String processDefinitionId) static FlowableEntityEventFlowableEventBuilder.createEntityExceptionEvent(FlowableEngineEventType type, Object entity, Throwable cause) static FlowableEntityEventFlowableEventBuilder.createEntityExceptionEvent(FlowableEngineEventType type, Object entity, Throwable cause, String executionId, String processInstanceId, String processDefinitionId) FlowableEventBuilder.createEntityWithVariablesEvent(FlowableEngineEventType type, Object entity, Map variables, boolean localScope) static FlowableErrorEventFlowableEventBuilder.createErrorEvent(FlowableEngineEventType type, String activityId, String errorId, String errorCode, String executionId, String processInstanceId, String processDefinitionId) static FlowableEscalationEventFlowableEventBuilder.createEscalationEvent(FlowableEngineEventType type, String activityId, String escalationCode, String escalationName, String executionId, String processInstanceId, String processDefinitionId) static FlowableEventFlowableEventBuilder.createEvent(FlowableEngineEventType type, String executionId, String processInstanceId, String processDefinitionId) static FlowableEventFlowableEventBuilder.createGlobalEvent(FlowableEngineEventType type) static FlowableJobRescheduledEventFlowableEventBuilder.createJobRescheduledEvent(FlowableEngineEventType type, Job newJob, String originalJobId) static FlowableMessageEventFlowableEventBuilder.createMessageEvent(FlowableEngineEventType type, String activityId, String messageName, Object payload, String executionId, String processInstanceId, String processDefinitionId) FlowableEventBuilder.createMultiInstanceActivityCompletedEvent(FlowableEngineEventType type, int numberOfInstances, int numberOfActiveInstances, int numberOfCompletedInstances, String activityId, String activityName, String executionId, String processInstanceId, String processDefinitionId, FlowElement flowElement) FlowableEventBuilder.createMultiInstanceActivityEvent(FlowableEngineEventType type, String activityId, String activityName, String executionId, String processInstanceId, String processDefinitionId, FlowElement flowElement) FlowableEventBuilder.createSequenceFlowTakenEvent(org.flowable.engine.impl.persistence.entity.ExecutionEntity executionEntity, FlowableEngineEventType type, String sequenceFlowId, String sourceActivityId, String sourceActivityName, String sourceActivityType, Object sourceActivityBehavior, String targetActivityId, String targetActivityName, String targetActivityType, Object targetActivityBehavior) static FlowableSignalEventFlowableEventBuilder.createSignalEvent(FlowableEngineEventType type, String activityId, String signalName, Object signalData, String executionId, String processInstanceId, String processDefinitionId) static FlowableVariableEventFlowableEventBuilder.createVariableEvent(FlowableEngineEventType type, String variableName, Object variableValue, VariableType variableType, String taskId, String executionId, String processInstanceId, String processDefinitionId, String variableInstanceId) Constructors in org.flowable.engine.delegate.event.impl with parameters of type FlowableEngineEventTypeModifierConstructorDescriptionFlowableEntityEventImpl(Object entity, FlowableEngineEventType type) FlowableEntityExceptionEventImpl(Object entity, FlowableEngineEventType type, Throwable cause) FlowableEntityWithVariablesEventImpl(Object entity, Map variables, boolean localScope, FlowableEngineEventType type) FlowableJobRescheduledEventImpl(Job entity, String rescheduledJobId, FlowableEngineEventType type)