public interface EventHandler
EventHandler defines the contract between Web Central and classes that implement workflow rule functionality.
For each workflow rule invocation, Web Central:
Event handler classes must either:
EventHandler implementation must be stateless, e.g. have no instance variables.
| Modifier and Type | Method and Description |
|---|---|
void |
handle(EventHandlerContext context)
Performs event handler operation.
|
void handle(EventHandlerContext context) throws com.archibus.utility.ExceptionBase
context - Workflow rule execution context containing input parameters.com.archibus.utility.ExceptionBase - If event handler execution fails due to any reason.