question

Upvotes
Accepted
66 2 6 11

Register multiple batch request

Hi Team,

There is a 65535 byte limit on the size of the ElementList entry that is used when making the Batch request for EMA API. Could you pls give us a demo how to send another Batch request if the RIC list exceed 65535 byte ?

BTW, what is the meaning of consumer.unregister(arg0);

thanks

Gang



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.

Upvotes
Accepted
24.7k 54 17 14

Hello @gang.chen1

According to the EMA Java API Reference document, the OmmConsumer's unregister function accepts the handle value as an input parameter to specify which stream the application wants to close.

ema-unregister.png

The EMA API assigns all opened items or instruments a unique numeric identifier (e.g. long), called a handle, which is returned by the OmmConsumer.registerClient() call. A handle is valid as long as its associated item stays open.

Note: The EMA Java API Reference document at the <RTSDK package>\Java\Ema\Docs\refman\emajava folder.

However, for the batch subscription, the API automatics unsubscribe the batch stream for the application (this is why the application receives the "Stream closed for batch" message), so the application does not need to call OmmConsumer.unregister(batch_handle) manually.



ema-unregister.png (12.6 KiB)
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
14.2k 30 5 10

hi @gang.chen1 ,

For sending multiple batch requests, could you please check the answer provided in this thread


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.

<AHS>

another answer is in progress (the meaning of consumer.unregister(arg0);)

Hi samasiri,

Thanks and I saw that before. Double confirm we can just send consumer.registerClient again and again ? and no need to call consumer.unregister(arg0) in the middle ?

finally, what is the usage of consumer.unregister(arg0);

thx

hi @gang.chen1 ,

regarding the meaning of consumer.unregister(arg0);

you may check the documentation provided in Message API - Java: Development and Configuration Guides with Examples > EMA J RDM Usage Guide

page 7. mentioned that OmmConsumer.unregister() is the Close Message (Request)

1652763741956.png

Page 9. for the general domain use,

When the consumer is no longer interested, it sends an CloseMsg to close the stream
1652764015241.png

1652764015241.png (158.2 KiB)
1652763741956.png (141.4 KiB)

Hi Samasiri,

Thanks and what is the arg0 parameter should be? seems no explanation for it , or just call consumer.unregister();

thx

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.