Hello, In RFA C++ api version 8.2, is it possible to request value of specific field? or only way is to iterate on the container?
E.g.
auto bidPrice = msg.Get(BID);
Hello @mktdata
The app will have to iterate over the field list to get a particular field. There is no method to directly ask for a field. The FieldList data is not organized like a Map or Dictionary and hence not indexed by a key.
@mktdata
I checked and found that the FieldList supports the find method.
It required a field ID, not a field name.