Click or drag to resize

IMessageTimestamp Interface

Defines a contract for all message timestamps

Namespace: Sportradar.OddsFeed.SDK.Entities
Assembly: Sportradar.OddsFeed.SDK.Entities (in Sportradar.OddsFeed.SDK.Entities.dll) Version: 1.59.0.0 (1.59.0.0)
Syntax
C#
public interface IMessageTimestamp

The IMessageTimestamp type exposes the following members.

Properties
 NameDescription
Public propertyCreated Gets the value specifying when the message was generated and put in queue on rabbit server (milliseconds since EPOCH UTC)
Public propertyDispatched Gets the value specifying when the message was dispatched to the user from the sdk (milliseconds since EPOCH UTC)
Public propertyReceived Gets the value specifying when the message was received for processing by the sdk (milliseconds since EPOCH UTC)
Public propertySent Gets the value specifying when the message was sent from the rabbit server (milliseconds since EPOCH UTC)
Top
Remarks
Created and Sent are generated on rabbit server and Received and Dispatched on a local machine running sdk. If the system clocks are not in-sync it may happen that Received is before Created. Similar logic applies also to other properties.
See Also