public interface ISckCustomSend
ISckCustomSend is the interface that Custom Send writers must implement.
The customized send action, whom a reference is passed through sendActionRef parameter
of the setup() method, lets a chance to form/encode/check the sent data before it goes on the wire.
setup()
method.
Method Summary | |
---|---|
byte[] |
onAfterSubstitution(byte[] data)
Called after the substitutions are applied on the data to be sent |
byte[] |
onBeforeSubstitution(byte[] data)
Called before the substitutions are applied on the data to be sent |
void |
setup(ITestExecutionServices tesRef,
ISckSendAction sendActionRef)
Setup is called before the customized send action is executed. |
Method Detail |
---|
void setup(ITestExecutionServices tesRef, ISckSendAction sendActionRef)
tesRef
- the reference to the ITestExecutionServices, that allows to log custom events in
the Test Log amongst other thingssendActionRef
- the reference to the customized send actionbyte[] onBeforeSubstitution(byte[] data)
data
-
byte[] onAfterSubstitution(byte[] data)
data
-