Transformer is processing data before sending it to next transformer or to final recipient.
This transformer will work with either binary or text data, but string processing features are limited.
Binary transformer properties:
- Enabled (boolean). If enabled, transformer will be used for data processing.
- Read only (boolean). If set as read only, the transformer will not send any data to next recipient.
- WaitForNewLine (boolean): If enabled, transformer will buffer data and not send to next recipient until "NewLineSeparator_Hex" is received.
- NewLineSeparator_Hex (hex string): default value is 0xa (\n). If WaitForNewLine is set to true, the transformer will wait for separator (last occurrence) and will send everything before it + line ending symbols to next recipient.
- Binary_Replace_From_Hex (hex string): hex string to replace incoming data from. If empty, ignored.
- Binary_Replace_To_Hex (hex string): hex string to replace Binary_Replace_From_Hex with.
Hex strings can be defined in any of the following formats:
- 0x11 0xaa 0xbb
- 11 aa bb
- 11 AA bB
- 11aabb