I'm trying to migrate my RFA API application to EMA/ETA API app.
In RFA, I can get the number of stored event in a event queue by rfa::common::EventQueue::getEventQueueCurrentSize(). I use this for evaluating the speed of event processing of my app.
In EMA, there are no event queue functions, so I want to know how should I evaluate the speed.
- Can I get the number of stored event in a event queue by another function?
- Can EMA API alert us that event queue is full or getting over some threshold?
- Is there any other ways to evaluate that my application is enough fast to process all events on time?