Package org.camunda.bpm.scenario.act
Interface SignalIntermediateCatchEventAction
-
- All Superinterfaces:
Action<EventSubscriptionDelegate>
public interface SignalIntermediateCatchEventAction extends Action<EventSubscriptionDelegate>
- Author:
- Martin Schimak
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexecute(EventSubscriptionDelegate signal)Implement this action with custom code to be executed when the process instance arrives at a signal intermediate catch event.
-
-
-
Method Detail
-
execute
void execute(EventSubscriptionDelegate signal) throws Exception
Implement this action with custom code to be executed when the process instance arrives at a signal intermediate catch event.- Specified by:
executein interfaceAction<EventSubscriptionDelegate>- Parameters:
signal- the event subscription waiting for a signal.- Throws:
Exception- in case your custom code throws checked exceptions. Such exceptions will be wrapped into RuntimeExceptions and rethrown.
-
-