Replies: 1 comment 2 replies
-
BTW I hope this doesn't come across as language lawyering or anything, the reason I ask is I'm writing a library to serve as an intermediate layer between Quickfix/J and other Java FIX implementations, and just want to pick the best data type for the UTC timestamp fields. Thanks |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I tried figuring this out for myself from documentation, code, and discussion on Github but couldn't seem to find an answer. I was wondering, why is
LocalDateTime
used for FIX UTCTimestamp fields likeSendingTime
? From my cursory reading about the two different types,LocalDateTime
is not intended to carry any timezone information with it, whileInstant
represents a moment on the UTC timeline, which seems to correspond more closely to the FIX spec definition of these fields.Appreciate any insights you can offer, thanks!
Beta Was this translation helpful? Give feedback.
All reactions