Solclient
IMessageElidingEligible Property |
Setting this property to true indicates that this message should be eligible for eliding.
Namespace: SolaceSystems.Solclient.Messaging
Assembly: SolaceSystems.Solclient.Messaging (in SolaceSystems.Solclient.Messaging.dll) Version: 7.2.1.27 (7.2.1.27)
Syntax
bool ElidingEligible { get; set; }
Property ElidingEligible As Boolean Get Set
property bool ElidingEligible { bool get (); void set (bool value); }
Property Value
Type: BooleanRemarks
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