You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-4Lines changed: 13 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# th2-codec-fix-ng 0.1.0
1
+
# th2-codec-fix-ng 0.1.1
2
2
3
3
This codec can be used in dirty mode for decoding and encoding messages via the FIX protocol.
4
4
@@ -14,7 +14,8 @@ Configuration example.
14
14
```yaml
15
15
beginString: FIXT.1.1
16
16
dictionary: fix_dictionary.xml
17
-
charset: US_ASCII
17
+
charset: US-ASCII
18
+
decodeDelimiter: \u0001
18
19
dirtyMode: false
19
20
decodeValuesToStrings: true
20
21
decodeComponentsToNestedMaps: true
@@ -27,7 +28,10 @@ default value: `FIXT.1.1`. Value to put into the `BeginString` field (tag: 8) wh
27
28
required value. XML file containing the FIX dictionary.
28
29
29
30
#### charset
30
-
default value: `US_ASCII`. Charset for reading and writing FIX fields.
31
+
default value: `US-ASCII`. Charset for reading and writing FIX fields.
32
+
33
+
#### decodeDelimiter
34
+
default value: `\u0001`. Delimiter character from `US-ASCII` charset.
31
35
32
36
#### dirtyMode
33
37
default value: `false`. If `true`, processes all messages in dirty mode (generates warnings on invalid messages and continues processing). If `false`, only messages that contain the `encode-mode: dirty` property will be processed in dirty mode.
@@ -42,12 +46,17 @@ default value: `true`. If `true`, decodes `components` to nested maps instead of
42
46
Component benchmark results available [here](docs/benchmarks/jmh-benchmark.md).
0 commit comments