Hi i'm subscribing to symbols with the following type of code
consumer.registerClient(
ReqMsg()
// default subscription domain is MMT_MARKET_PRICE
.serviceName( "ELEKTRON_AD" )
.name( "IBM.N" ),
client );
at the same time i'm receiving data. Is the Ema C++ interface threadsafe? Can i subscribe
symbols while receiving data? Are there any precautions i should take to ensure there's no
deadlock condition? I"m receiving updates in the derived class
class AppClient : public thomsonreuters::ema::access::OmmConsumerClient
just like the example
Thanks