Discover Refinitiv
MyRefinitiv Refinitiv Perspectives Careers
Created with Sketch.
All APIs Questions & Answers  Register |  Login
Ask a question
  • Questions
  • Tags
  • Badges
  • Unanswered
Search:
  • Home /
  • TREP APIs /
  • RFA /
avatar image
Question by magno.yu · Dec 08, 2017 at 04:32 PM · treprfarfa-apibatch

Initial response for RFA

Hi, so I'm subscribing to RFA and we make a batch request for a particular option for different exchanges. And then we start getting quote for each RIC of that contract. For the first initial quote of each RIC, I think we have


((msg.getMsgType() == OMMMsg.MsgType.REFRESH_RESP)
&& (msg.isSet(OMMMsg.Indication.REFRESH_COMPLETE)
&& (msg.isSet(OMMMsg.Indication.CLEAR_CACHE)))) = true

Now I'm wondering if we get any message that will indicate the initial snapshots of all the RICS of the batch is completed.

Thanks,

People who like this

0 Show 0
Comment
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

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

1 Reply

  • Sort: 
avatar image
REFINITIV
Best Answer
Answer by pimchaya.wongrukun01 · Dec 11, 2017 at 10:58 PM

Hello @magno.yu

When an application requests a RIC, the successful result(refresh message) or failed result(status message e.g. no permission or RIC not found) is returned to the application. This is initial response. To verify if initial responses of all RICs in a batch request are returned, one possible way is to check if the number of refresh messages plus the number of status messages equals the number of RICs.

The example snipped source code of RFA Java application below shows how to verify if initial responses of all level1/MARKET_PRICE RICs in a batch request are returned:

//the number of initial response the application receive currently.
int numInitialResponse =0; 
//the number of RICs the application subscribes
int numRIC = 3; 
//a flag if the application has received all initial responses or not
boolean receivedAllresponse = false;
…
//when process events
  //successful result
  if(respMsg.getMsgType() == OMMMsg.MsgType.REFRESH_RESP
                && respMsg.getMsgModelType() == RDMMsgTypes.MARKET_PRICE
                && respMsg.isSet(OMMMsg.Indication.REFRESH_COMPLETE)
  ) 
  {
    ++numInitialResponse;
    System.out.println("Successful subscribing of a RIC named " +respMsg.getAttribInfo().getName() );
  }
  //failed result
  else if(respMsg.getMsgModelType() == RDMMsgTypes.MARKET_PRICE
          && respMsg.getMsgType() == OMMMsg.MsgType.STATUS_RESP) 
  {
    ++numInitialResponse;
    System.out.println("Failed subscribing of a RIC named " +respMsg.getAttribInfo().getName() + " with state=" + respMsg.getState());
  }
  //verify if number of results equals number of RICs
  if(numInitialResponse==numRIC && !receivedAllresponse) 
  {
     System.out.println("Received all initial responses!!!");
     receivedAllresponse = true;
  }
Comment

People who like this

0 Show 0 · Share
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

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

Watch this question

Add to watch list
Add to your watch list to receive emailed updates for this question. Too many emails? Change your settings >
9 People are following this question.

Related Questions

How to use SymbolList for C++ for SnapShot request

Update messages of batch request

How to subscribe to all instruments supplied by a Provider?

Update several RICS with one OmmConsumer.Submit()

I get an error :"A20: Aggregate item limit exceeded." after i submit multiple batch requests using RFA 8.0 C++ API.

  • Copyright
  • Cookie Policy
  • Privacy Statement
  • Terms of Use
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Alpha
  • App Studio
  • Block Chain
  • Bot Platform
  • Connected Risk APIs
  • DSS
  • Data Fusion
  • Data Model Discovery
  • Datastream
  • Eikon COM
  • Eikon Data APIs
  • Electronic Trading
    • Generic FIX
    • Local Bank Node API
    • Trading API
  • Elektron
    • EMA
    • ETA
    • WebSocket API
  • FX Venues
    • FX Trading – RFQ Maker
  • Intelligent Tagging
  • Legal One
  • Messenger Bot
  • Messenger Side by Side
  • ONESOURCE
    • Indirect Tax
  • Open Calais
  • Open PermID
    • Entity Search
  • Org ID
  • PAM
    • PAM - Logging
  • ProView
  • ProView Internal
  • Product Insight
  • Project Tracking
  • RDMS
  • Refinitiv Data Platform
    • Refinitiv Data Platform Libraries
  • Rose's Space
  • Screening
    • Qual-ID API
    • Screening Deployed
    • Screening Online
    • World-Check One
    • World-Check One Zero Footprint
  • Side by Side Integration API
  • TR Knowledge Graph
  • TREP APIs
    • CAT
    • DACS Station
    • Open DACS
    • RFA
    • UPA
  • TREP Infrastructure
  • TRKD
  • TRTH
  • Thomson One Smart
  • Transactions
    • REDI API
  • Velocity Analytics
  • Wealth Management Web Services
  • Workspace SDK
    • Element Framework
    • Grid
  • World-Check Data File
  • Yield Book Analytics
  • 中文论坛
  • Explore
  • Tags
  • Questions
  • Badges