question

Upvotes
Accepted
20 3 2 5

Can my application request the same RIC multiple times?

I have a question about what happens if my application requests the same RIC multiple times. What happens? Will the API warn me that I already have it? What should I do to check or guard against this happening? I saw this article (link) but it didn't answer my question. Thank you. API is EMA Java v4.1.


https://community.developers.refinitiv.com/questions/10057/subscribing-to-ric-multiple-times.html

elektronrefinitiv-realtimeelektron-sdkema-apirrtelektron-message-api
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.

Hello @mark.ringrose,

Thank you for your participation in the forum.

Is a reply below satisfactory in resolving your query?

If yes please click the 'Accept' text next to the appropriate reply. This will guide all community members who have a similar question.

Otherwise, please post again offering further insight into your question.

Thanks,

-AHS

Hello @mark.ringrose,

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,

-AHS

Upvotes
Accepted
32.2k 40 11 20

Hello @mark.ringrose,

For EMA this is a valid request, so there will be no warning. EMA will establish two streams on behalf of the consumer, each with it's own streamId. The consumer will process every update twice, once on each stream ID, so if one is printing the updates, each update will be seen twice.

For example:

UpdateMsg
    streamId="5"
    domain="MarketPrice Domain"
    updateTypeNum="0"
    name="JPY="
    serviceId="300"
    serviceName="ELEKTRON_EDGE"
    Payload dataType="FieldList"
        FieldList
            FieldEntry fid="114" name="BID_NET_CH" dataType="Real" value="0.47"
            FieldEntry fid="372" name="IRGPRC" dataType="Real" value="0.44"
        FieldListEnd
    PayloadEnd
UpdateMsgEnd

EmaRdm.INSTRUMENT_UPDATE_UNSPECIFIED
UpdateMsg
    streamId="6"
    domain="MarketPrice Domain"
    updateTypeNum="0"
    name="JPY="
    serviceId="300"
    serviceName="ELEKTRON_EDGE"
    Payload dataType="FieldList"
        FieldList
            FieldEntry fid="114" name="BID_NET_CH" dataType="Real" value="0.47"
            FieldEntry fid="372" name="IRGPRC" dataType="Real" value="0.44"
        FieldListEnd
    PayloadEnd
UpdateMsgEnd

If you would prefer for this not to happen, at the point of registerClient, would check if the subscription is unique.

Does this address the question?

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
20 3 2 5

Zoya,


Thank you very much for your prompt reply. It does address the question. One further question on your reply: In your final sentence you say: "If you would prefer for this not to happen, at the point of registerClient, would check if the subscription is unique."

Does the registerClient method respond with a flag or indicator to tell me if the subscription is unique? So, do I just have to check this flag or do I need to do something special to find out if the subscription is unique?

Thank you.

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
32.2k 40 11 20

@mark.ringrose,

Each subscription returns a handle. Please look up registerClient() and handle(), in Reference.

Each event carries the handle, i.e. event.handle, so one can match the two, the registration and the event, this way. The intention of the handle:

  • is to match the event seen in a callback with subscription
  • to unregister
  • to reissue
  • not to determine if it is unique in terms of item

In order not to register for the same item twice, the consumer keeps track of and controls what it passes into registerClient

Please note that one may also require register for two of the same item with different Domain Model, i.e. L1 and L2, which is also a legit use, and will result in two different handles with two different streamIds.

Please note, that one can pass parameter closure into registerClient that may help keeping track of uniqueness, among other things. If we generate a closure in a way that uniquely defines every item registration, and store and keep the closures that have been used prior, we can always check if the registration is unique.

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.

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.