Package org.activiti.engine.impl.event
Class AbstractEventHandler
- java.lang.Object
-
- org.activiti.engine.impl.event.AbstractEventHandler
-
- All Implemented Interfaces:
EventHandler
- Direct Known Subclasses:
MessageEventHandler,SignalEventHandler
public abstract class AbstractEventHandler extends java.lang.Object implements EventHandler
-
-
Constructor Summary
Constructors Constructor Description AbstractEventHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddispatchActivitiesCanceledIfNeeded(EventSubscriptionEntity eventSubscription, ExecutionEntity execution, org.activiti.bpmn.model.FlowElement currentFlowElement, CommandContext commandContext)protected voiddispatchActivityCancelled(EventSubscriptionEntity eventSubscription, ExecutionEntity boundaryEventExecution, org.activiti.bpmn.model.FlowNode flowNode, CommandContext commandContext)protected voiddispatchActivityCancelledForChildExecution(EventSubscriptionEntity eventSubscription, ExecutionEntity parentExecutionEntity, ExecutionEntity boundaryEventExecution, CommandContext commandContext)protected voiddispatchExecutionCancelled(EventSubscriptionEntity eventSubscription, ExecutionEntity execution, CommandContext commandContext)voidhandleEvent(EventSubscriptionEntity eventSubscription, java.lang.Object payload, CommandContext commandContext)protected java.lang.StringparseActivityType(org.activiti.bpmn.model.FlowNode flowNode)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.activiti.engine.impl.event.EventHandler
getEventHandlerType
-
-
-
-
Method Detail
-
handleEvent
public void handleEvent(EventSubscriptionEntity eventSubscription, java.lang.Object payload, CommandContext commandContext)
- Specified by:
handleEventin interfaceEventHandler
-
dispatchActivitiesCanceledIfNeeded
protected void dispatchActivitiesCanceledIfNeeded(EventSubscriptionEntity eventSubscription, ExecutionEntity execution, org.activiti.bpmn.model.FlowElement currentFlowElement, CommandContext commandContext)
-
dispatchExecutionCancelled
protected void dispatchExecutionCancelled(EventSubscriptionEntity eventSubscription, ExecutionEntity execution, CommandContext commandContext)
-
dispatchActivityCancelled
protected void dispatchActivityCancelled(EventSubscriptionEntity eventSubscription, ExecutionEntity boundaryEventExecution, org.activiti.bpmn.model.FlowNode flowNode, CommandContext commandContext)
-
dispatchActivityCancelledForChildExecution
protected void dispatchActivityCancelledForChildExecution(EventSubscriptionEntity eventSubscription, ExecutionEntity parentExecutionEntity, ExecutionEntity boundaryEventExecution, CommandContext commandContext)
-
parseActivityType
protected java.lang.String parseActivityType(org.activiti.bpmn.model.FlowNode flowNode)
-
-