Error messages

Does anyone know what these error messages are?

2021-02-16 07:49:31,281 [rst-IDN_SELECTFEED-1613479771121] ERROR StreamingReutersListener:102 - Dispatch exception

com.reuters.rfa.common.DeactivatedException: null

at com.reuters.rfa.internal.common.EventQueueImpl.localDispatch(EventQueueImpl.java:217)

at com.reuters.rfa.internal.common.EventQueueImpl.dispatch(EventQueueImpl.java:170)

at com.cibc.fx.rates.reuters.StreamingReutersListener$1.run(StreamingReutersListener.java:97)

at java.lang.Thread.run(Thread.java:748)

2021-02-16 07:49:32,283 [rst-IDN_SELECTFEED-1613479771121] ERROR StreamingReutersListener:102 - Dispatch exception

com.reuters.rfa.common.DeactivatedException: null

at com.reuters.rfa.internal.common.EventQueueImpl.localDispatch(EventQueueImpl.java:217)

at com.reuters.rfa.internal.common.EventQueueImpl.dispatch(EventQueueImpl.java:170)

at com.cibc.fx.rates.reuters.StreamingReutersListener$1.run(StreamingReutersListener.java:97)

at java.lang.Thread.run(Thread.java:748)

Best Answer

  • Hi @mitchell.ruck

    DeactivatedException usually indicates that the application is calling the dispatch() function for an Event Queue that has already been deactivated and is empty.

    An EventQueue is normally deactivated as part of the Cleanup process when the app is shutting down / closing the session with the server.

    The usual explanation for this scenario is the application has a bug/race condition which means that it is still calling dispatch() after the associated EventQueue has been deactivated.