Hello we are using RFA 8.1 C++ api to consume market data.
Can you tell me the effect of following call if Data buffer is blank i.e. DataBuffer::isBlank() == true;
double price = dataBuffer.getDouble();
int size = static_cast<int>(dataBuffer.getReal().getValue());
What would be value of "price" and "size" in this case? Is it a valid code?