Hi,
I am using RFA version 8.1.0.E2.all
However I am not getting the nanos values for the timestamp fields.
I know that the nanos are being published for the items we are interested by the exchanges.
Code:
OMMDateTime ommdateTime = (OMMDateTime) value;
if (!ommdateTime.isBlank()) {
if (fidDef.getMaxOMMLengthAsInt() == 8) {
long millisSinceEpoch = ommdateTime.toSeconds();
int microS = ommdateTime.getMicrosecond();
int nanoS = ommdateTime.getNanosecond();
Both the microS and nanoS values are 0 (where I know these are published by the exchange)
Please let me know what is the issue? Are there any setttings to enable it in RFA?
Thanks