question

Upvotes
Accepted
11 4 4 5

How to maintain an image/cache in EMA? We are moving from RFA MarketData API to EMA.

After going through the EMA documentation, I am not sure if EMA is providing any mechanism to maintain a cached image and applying updates to it.

We used to do it using only a few lines of code in RFA MarketData. We are subscribing to market price service. In RFA MarketData code we maintain a cached full image in a TibMsg object.

TibMsg m_RawImage;

We populate the TibMsg object when we get an initial image from the RFA callback using the following code:

void ProcessItemImage(const MarketDataItemEvent& event)
{
  const rfa::common::Buffer& buffer = event.getBuffer();
  switch (event.getDataFormat())
    {
      case MarketDataEnums::Marketfeed:
        if (!buffer.isEmpty())
        {
          TibMsg msg;
          TibErr err = msg.UnPack((char*)buffer.c_buf(), buffer.size());
          assert(err.code == TIBMSG_OK);
          CopyTibMsg(m_RawImage, msg);
.
.
.

When we get a update message callback from RFA we apply the update to the cached full image using the following code:

void ProcessItemUpdate(const MarketDataItemEvent& event)
{
  const rfa::common::Buffer& buffer = event.getBuffer();
  switch (event.getDataFormat())
  {
    case MarketDataEnums::Marketfeed:
      if (!buffer.isEmpty())
      {
        TibMsg msg;
        TibErr err = msg.UnPack((char*)buffer.c_buf(), buffer.size());
        assert(err.code == TIBMSG_OK);
        if (err.code != TIBMSG_OK)
          return;
        UpdateTibMsg(m_RawImage, msg);
.
.
}
bool UpdateTibMsg(TibMsg& image, TibMsg& delta)
{
  TibField field;
  bool ret = false;
  for (field.First(δ); field.status==TIBMSG_OK; field.Next())
  {
    TibErr err = image.Update(&field);
    ret |= (err.code == TIBMSG_OK);
  }
  return ret;
}

What is the equivalent thing to do in EMA? What object can we cache?

The documentation clearly says this:

Warning! The Data class and all classes that inherit from it are designed as temporary and short-lived objects. For this reason, do not use them as storage or caching devices.

Do we need to implement our own classes for caching and applying updates?

elektronrefinitiv-realtimeelektron-sdkema-apirrtrfaelektron-message-apic++
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 @nm

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

Hello @nm

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

1 Answer

· Write an Answer
Upvotes
Accepted
18.2k 21 13 21

Hi @nm

You can follow this tutorial to decode message.

You can extract any interested information from this step.

And you have to create your own class to keep the information from refresh(equivalent to image in TibMsg) or update to your own cache.

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.