Interface ActivitiEventListener
-
- All Known Implementing Classes:
BaseDelegateEventListener,BaseEntityEventListener,DebugInfoEntityEventListener,DelegateActivitiEventListener,DelegateExpressionActivitiEventListener,ErrorThrowingEventListener,EventLogger,MessageThrowingEventListener,SignalThrowingEventListener
public interface ActivitiEventListenerDescribes a class that listens forActivitiEvents dispatched by the engine.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisFailOnException()voidonEvent(ActivitiEvent event)Called when an event has been fired
-
-
-
Method Detail
-
onEvent
void onEvent(ActivitiEvent event)
Called when an event has been fired- Parameters:
event- the event
-
isFailOnException
boolean isFailOnException()
- Returns:
- whether or not the current operation should fail when this listeners execution throws an exception.
-
-