question

Upvotes
Accepted
11 4 4 5

Is OmmConsumer::unregister a synchronous call?

It looks like call to OmmConsumer::unregister is synchronous. We are moving from RFA where equivalent call to rfa::sessionLayer::MarketDataSubscriber::unsubscribe was asynchronous. Is OmmConsumer::unregister a synchronous call? If yes, is there an asynchronous call for unsubscribe? Thanks.

elektronrefinitiv-realtimeelektron-sdkema-apirrtelektron-message-apic++
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
Accepted
25.3k 87 12 25

Hi @nm

I have received confirmation that this is by design that only the dispatching thread can submit message within the callback methods as the dispatching thread acquires the lock when calling the rsslReactorDispatch method.

The lock is needed to streamline the locking flow between the EMA and the Reactor layers as the Reactor has its own locking as well.

RFA works because it does not use the Reactor and it uses its own message queue to dispatch events from RFA.

So, in answer to your other question there is no 'asynchronous call' - i.e. none that does not use the lock for unsubscribing individual streams.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
25.3k 87 12 25

Hi @nm,

Can you expand on what behaviour of RFA MarketDataSubscriber you are trying to recreate with EMA or what EMA behavior suggests synchronous behaviour?

When you call OmmConsumer::unregister for a particular items handle, it relinquishes interest in an open item stream of that item. EMA will unsubscribe that item from the server.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

It seems synchronous because if a call back like onUpdateMsg is in progress and we call unregister from another thread for that item, the unregister is not going to return until the the onUpdateMsg is done. The unregister is waiting for a lock inside EMA

https://github.com/Refinitiv/Elektron-SDK/blob/master/Cpp-C/Ema/Src/Access/Impl/OmmBaseImpl.cpp#L1906-L1908

The lock is hold by the callback https://github.com/Refinitiv/Elektron-SDK/blob/master/Cpp-C/Ema/Src/Access/Impl/OmmBaseImpl.cpp#L1556-L1557

The code we are converting from RFA to EMA uses a lock in the onUpdateMsg. The same lock is hold by the thread that is calling the unregister method. This is getting deadlocked in EMA but does not deadlock in RFA. So in RFA we can call unregister even though a callback is in progress (waiting for a lock which is currently hold by the thread calling unregister).

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.