Class AbstractFlowableEngineEventListener
- java.lang.Object
-
- org.flowable.common.engine.api.delegate.event.AbstractFlowableEventListener
-
- org.flowable.engine.delegate.event.AbstractFlowableEngineEventListener
-
- All Implemented Interfaces:
FlowableEventListener
public abstract class AbstractFlowableEngineEventListener extends AbstractFlowableEventListener
- Author:
- Robert Hafner
-
-
Field Summary
Fields Modifier and Type Field Description protected Set<FlowableEngineEventType>types-
Fields inherited from class org.flowable.common.engine.api.delegate.event.AbstractFlowableEventListener
onTransaction
-
-
Constructor Summary
Constructors Constructor Description AbstractFlowableEngineEventListener()AbstractFlowableEngineEventListener(Set<FlowableEngineEventType> types)
-
Method Summary
-
Methods inherited from class org.flowable.common.engine.api.delegate.event.AbstractFlowableEventListener
getOnTransaction, isFireOnTransactionLifecycleEvent, setOnTransaction
-
-
-
-
Field Detail
-
types
protected Set<FlowableEngineEventType> types
-
-
Constructor Detail
-
AbstractFlowableEngineEventListener
public AbstractFlowableEngineEventListener()
-
AbstractFlowableEngineEventListener
public AbstractFlowableEngineEventListener(Set<FlowableEngineEventType> types)
-
-
Method Detail
-
onEvent
public void onEvent(FlowableEvent flowableEvent)
-
isFailOnException
public boolean isFailOnException()
-
getTypes
public Collection<? extends FlowableEventType> getTypes()
-
entityCreated
protected void entityCreated(FlowableEngineEntityEvent event)
-
entityInitialized
protected void entityInitialized(FlowableEngineEntityEvent event)
-
entityUpdated
protected void entityUpdated(FlowableEngineEntityEvent event)
-
entityDeleted
protected void entityDeleted(FlowableEngineEntityEvent event)
-
entitySuspended
protected void entitySuspended(FlowableEngineEntityEvent event)
-
entityActivated
protected void entityActivated(FlowableEngineEntityEvent event)
-
timerScheduled
protected void timerScheduled(FlowableEngineEntityEvent event)
-
timerFired
protected void timerFired(FlowableEngineEntityEvent event)
-
jobCancelled
protected void jobCancelled(FlowableEngineEntityEvent event)
-
jobExecutionSuccess
protected void jobExecutionSuccess(FlowableEngineEntityEvent event)
-
jobExecutionFailure
protected void jobExecutionFailure(FlowableEngineEntityEvent event)
-
jobRetriesDecremented
protected void jobRetriesDecremented(FlowableEngineEntityEvent event)
-
jobRescheduled
protected void jobRescheduled(FlowableEngineEntityEvent event)
-
custom
protected void custom(FlowableEngineEvent event)
-
engineCreated
protected void engineCreated(FlowableProcessEngineEvent event)
-
engineClosed
protected void engineClosed(FlowableProcessEngineEvent flowableEngineEvent)
-
activityStarted
protected void activityStarted(FlowableActivityEvent event)
-
activityCompleted
protected void activityCompleted(FlowableActivityEvent event)
-
activityCancelled
protected void activityCancelled(FlowableActivityCancelledEvent event)
-
multiInstanceActivityStarted
protected void multiInstanceActivityStarted(FlowableMultiInstanceActivityEvent event)
-
multiInstanceActivityCompleted
protected void multiInstanceActivityCompleted(FlowableMultiInstanceActivityCompletedEvent event)
-
multiInstanceActivityCompletedWithCondition
protected void multiInstanceActivityCompletedWithCondition(FlowableMultiInstanceActivityCompletedEvent event)
-
multiInstanceActivityCancelled
protected void multiInstanceActivityCancelled(FlowableMultiInstanceActivityCancelledEvent event)
-
activitySignalWaiting
protected void activitySignalWaiting(FlowableSignalEvent event)
-
activitySignaled
protected void activitySignaled(FlowableSignalEvent event)
-
activityCompensate
protected void activityCompensate(FlowableActivityEvent event)
-
activityMessageWaiting
protected void activityMessageWaiting(FlowableMessageEvent event)
-
activityMessageReceived
protected void activityMessageReceived(FlowableMessageEvent event)
-
activityMessageCancelled
protected void activityMessageCancelled(FlowableMessageEvent event)
-
activityErrorReceived
protected void activityErrorReceived(FlowableErrorEvent event)
-
historicActivityInstanceCreated
protected void historicActivityInstanceCreated(FlowableEngineEntityEvent event)
-
historicActivityInstanceEnded
protected void historicActivityInstanceEnded(FlowableEngineEntityEvent event)
-
sequenceFlowTaken
protected void sequenceFlowTaken(FlowableSequenceFlowTakenEvent event)
-
variableCreated
protected void variableCreated(org.flowable.variable.api.event.FlowableVariableEvent event)
-
variableUpdatedEvent
protected void variableUpdatedEvent(org.flowable.variable.api.event.FlowableVariableEvent event)
-
variableDeletedEvent
protected void variableDeletedEvent(org.flowable.variable.api.event.FlowableVariableEvent event)
-
taskCreated
protected void taskCreated(FlowableEngineEntityEvent event)
-
taskAssigned
protected void taskAssigned(FlowableEngineEntityEvent event)
-
taskCompleted
protected void taskCompleted(FlowableEngineEntityEvent event)
-
processCreated
protected void processCreated(FlowableEngineEntityEvent event)
-
processStarted
protected void processStarted(FlowableProcessStartedEvent event)
-
processCompleted
protected void processCompleted(FlowableEngineEntityEvent event)
-
processCompletedWithTerminateEnd
protected void processCompletedWithTerminateEnd(FlowableEngineEntityEvent event)
-
processCompletedWithErrorEnd
protected void processCompletedWithErrorEnd(FlowableEngineEntityEvent event)
-
processCompletedWithEscalationEnd
protected void processCompletedWithEscalationEnd(FlowableEngineEntityEvent event)
-
processCancelled
protected void processCancelled(FlowableCancelledEvent event)
-
historicProcessInstanceCreated
protected void historicProcessInstanceCreated(FlowableEngineEntityEvent event)
-
historicProcessInstanceEnded
protected void historicProcessInstanceEnded(FlowableEngineEntityEvent event)
-
getExecution
protected DelegateExecution getExecution(FlowableEngineEvent event)
-
-