Package org.apache.synapse
Interface SequenceFlowObserver
-
public interface SequenceFlowObserver
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcomplete(MessageContext synCtx, String seqName)This method should implement the logic to run at the end of the flowvoidsetName(String name)Set the observer namevoidstart(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
-
-