Package org.apache.synapse
Interface SequenceFlowObserver
-
public interface SequenceFlowObserver
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
complete(MessageContext synCtx, String seqName)
This method should implement the logic to run at the end of the flowvoid
setName(String name)
Set the observer namevoid
start(MessageContext synCtx, String seqName)
This method should implement the logic to run at the start of the flow
-
-
-
Method Detail
-
setName
void setName(String name)
Set the observer name- Parameters:
name
- handler name
-
start
void start(MessageContext synCtx, String seqName)
This method should implement the logic to run at the start of the flow
-
complete
void complete(MessageContext synCtx, String seqName)
This method should implement the logic to run at the end of the flow
-
-