Package com.attivio.sdk.server.component
Interface MessageHandlingWorkflowStage
-
- All Superinterfaces:
Stage
public interface MessageHandlingWorkflowStage extends Stage
AStage
that is capable of processing aPlatformMessage
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PlatformMessage
processMessage(PlatformMessage msg)
Called whenever a message is received for the component.
-
-
-
Method Detail
-
processMessage
PlatformMessage processMessage(PlatformMessage msg) throws AttivioException
Called whenever a message is received for the component. The return value can represent the results of the component or just be a pass-thru of the (possibly transformed) input message.- Parameters:
msg
- the message- Returns:
- the result of the service's processing of a message
- Throws:
AttivioException
-
-