quickfixj
quickfixj copied to clipboard
QuickFIX/J is a full featured messaging engine for the FIX protocol. - This is the official project repository.
Only updated the "boolean send(String messageString)" method. Do not wait for the logger to perform its task before sending a message. -> As a side effect, the logged fix message...
Made use of converters in some fields to convert value to a string, this way it avoid some allocations. Optimize the DoubleField class to efficiently manage 'double' by not mandatory...
All the inserted fields are duplicated : they are converted to StringField, then added to the treeMap. We can remove a lot of allocations by avoiding this behavior. Unless there...
Removed "Invalid FIX message object type : " error in encode(...) and support any message type, as the calling code is clean enough. For each message sent, the previous version...
Fixes https://github.com/quickfix-j/quickfixj/issues/474 - verify() method call moved further up in nextLogon() to prevent seqNumber resets over invalid logins.
Put `parseLong` and `parseInt` methods into `IntConverter` and used integer parsing method used in #529 that was also already present here for `long`: https://github.com/quickfix-j/quickfixj/blob/0cb4aa88f757933a5da52c98a6b9a0b1235e2a80/quickfixj-core/src/main/java/quickfix/field/converter/AbstractDateTimeConverter.java#L68-L74 NB: the old code used `Integer.parseInt()`...
**Describe the bug** We have two nodes(different physical machines) working in active-active mode, where only one node is supposed to handle all incoming traffic. In case of failover, F5 would...
Bumps [mockito-core](https://github.com/mockito/mockito) from 3.12.4 to 4.8.0. Release notes Sourced from mockito-core's releases. v4.8.0 Changelog generated by Shipkit Changelog Gradle Plugin 4.8.0 2022-09-07 - 10 commit(s) by Alex, James Baker, Johannes...
Bumps `jaxb.version` from 4.0.1 to 4.0.2. Updates `jakarta.xml.bind:jakarta.xml.bind-api` from 4.0.1 to 4.0.2 Commits ca43d8b Update API version of : to 4.0.2 80da6a2 Snippet fix 31fd9dc fix whitespaces (tabs to spaces)...
**Is your feature request related to a problem? Please describe.** QuickFixJ isn't released that often but there are often new commits that may have already fixed any issue I might...