A conglomerate is designing a Lightning Web Component (LWC) to display transactions aggregated from different sources. Their current system landscape is as follows:
1. Transactions are created at any time through their various on-premise and cloud-based systems.
2. All necessary transactions are replicated to a custom Transaction object in Salesforce. It is updated periodically so it only has a subset of the necessary transactions between updates.
3. Middleware supports publish-subscribe interactions and provides RESTful Enterprise APIs that can retrieve transactions from on-premise and cloud-based systems.
The company wants to address a usability concern regarding incomplete data displayed on the LWC component. What should the Integration Architect specify so the LWC will be able to display all the required transactions?
Recent Comments (The most recent comments are at the top.)
C.
Use the Continuation class to call the Enterprise APIs and then process the response in a callback method.
There is a continuation apex class from which we can call enterprise api in parlel to process the large data
https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/apex_continuations_apex.htm
https://www.freecram.net/question/Salesforce.Integration-Architecture-Designer.v2022-05-18.q108/a-conglomerate-is-designing-a-lightning-web-component-lwc-to-display-transactions-aggregated-from-differ
Isn't it C?