Package org.camunda.bpm.scenario.act
Interface EventBasedGatewayAction
-
- All Superinterfaces:
Action<EventBasedGatewayDelegate>
public interface EventBasedGatewayAction extends Action<EventBasedGatewayDelegate>
- Author:
- Martin Schimak
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexecute(EventBasedGatewayDelegate gateway)Implement this action with custom code to be executed when the process instance arrives at an event based gateway.
-
-
-
Method Detail
-
execute
void execute(EventBasedGatewayDelegate gateway) throws Exception
Implement this action with custom code to be executed when the process instance arrives at an event based gateway.- Specified by:
executein interfaceAction<EventBasedGatewayDelegate>- Parameters:
gateway- object providing you with further details about the events or receive tasks followed by this gateway.- Throws:
Exception- in case your custom code throws checked exceptions. Such exceptions will be wrapped into RuntimeExceptions and rethrown.
-
-