question

Upvotes
Accepted
1 0 0 0

How do I delete multiple records from the EMA proxy cache ?

How do I delete multiple records from a file from the EMA proxy cache admin console ?

ema-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 @hplow0,

It would be helpful to include more details to allow us better understand your question.

To my best knowledge, there is no EMA (Enterprise Message API that is part of Refinitiv Real Time SDK)- specific proxy, provided as part SDK or examples. Is the proxy part of your custom EMA implementation?

Or please explain more/include any relevant links to the documentation.

Thanks

Hi @hplow0,

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?

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


Thanks,

AHS

@hplow0

Hi,

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

Thanks,

AHS

1 Answer

· Write an Answer
Upvotes
Accepted
22k 58 14 21

Hi @hplow0,

Can you please clarify what you are trying to achieve? EMA is an API and does not cache any data - all the requested data is immediately delivered to the application through callback.

If your intention is to unsubscribe from an already open instrument, then use the handle for that item for invoking the unsubscribe call.


long handle = consumer.registerClient( EmaFactory.createReqMsg().serviceName(srvStr).name("IBM.N").payload(view), appClient, 0 );
.
.
.
// stop the subscription
consumer.unregister(handle);
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.