When I open a data stream via DeliveryFactory.CreateStream(...) I can supply callback methods e.g. OnRefresh(MyRefershHandler). This handler will then receive the message in form of a json object (JObject message). Is there a description somewhere listing the data that can be expected here, or in the other callbacks?
For example part of the message can be:
....
"Qos": {
"Timeliness": "Realtime",
"Rate": "TimeConflated",
"RateInfo": 3000
},
...
What are valid values for "Timeliness" or "Rate" I need to test for?