On 16th June and 2nd July, we received empty data from reuters.
In Data.h, class RFA_DATA_API Data has public member -
/** Indicate if value of data is blank (i.e., empty).
Typically, a display application depicts blank.
\return indicates if data is blank
*/
virtual bool isBlank() const;
The following code was triggered -
if (data.isBlank())
{
.... Something....
}
Data type was FieldListEnum as the following line was printed. <84> should be 132 in decimal.-
2020-07-02 07:46:37.690086 [14228:00007FC708F38700]<ReutersRfa.RFAWrapper(RFA)>[ERR]: Invalid data type received:<84>
Is it possible for reuters to send empty data?