10.24.0

IMessageElidingEligible Property

Setting this property to true indicates that this message should be eligible for eliding.

Definition

Namespace: SolaceSystems.Solclient.Messaging
Assembly: SolaceSystems.Solclient.Messaging (in SolaceSystems.Solclient.Messaging.dll) Version: 10.24.0
C#
bool ElidingEligible { get; set; }

Property Value

Boolean

Remarks

Message eliding enables filtering of data to avoid transmitting every single update to a subscribing client. It can be used to overcome slow consumers or any situation where a slower message rate is desired.

Time-based eliding (supported in SolOS-TR) ensures that subscriber applications always receive only the most current update of a published topic at a rate that they can manage. By limiting the incoming message rate, a subscriber application is able to avoid a message backlog filled with outdated messages.

This property does not indicate whether the message was elided or even provide information about the subscriber's configuration (with regards to Message Eliding).

See Also