According to my previous post, I must assume you are using MERGE mode.
If you need that all updates are forwarded, then you have to explicitly request this by asking (for the HTML case)
myTable.setRequestedMaxFrequency("unfiltered");
But note that this assumes that the average inbound update rate for the item is sustainable (for instance, if you are using Lightstreamer Moderato, the outbound update rate is limited to 1 update per second, so the inbound average rate should be lower).

Other options which still allow filtering in extreme cases are:
  • moving to DISTINCT mode (this may require a few changes, that we could discuss, if needed);
  • adding a counter field to your item, incremented by the Data Adapter upon each update, to make all updates different; note that the client will have to include this field in its subscription.