Xaver Schulz
Xaver Schulz
Hi @orenkoren, unfortunately I never worked with Unity, so I cannot say if your error is Unity related or not. Maybe the Unity Environment is running in a kind of...
DeepStreamRecord class implements INotifyPropertyChanged interface. So you can subscribe on the PropertyChanged event to get notified about updates/changes in a record.
If you get the record via GetRecordAsync then the PropertyChanged event is connected in the background with the server and will be triggered on server side changes of the record
What kind of data you want to see in the event args of such events? Feel free to propose a PR for this.
I understand. So I propose an API like this: ` client.Records.RecordPatched += (s, e) => { var record = e.Record; var path = e.Path; }; ` ` client.Records.RecordUpdated += (s,...
I have no linux box available at the moment. @xalikoutis Have you tested if your deepstream endpoint is accesible via another client? e.g. the javascript implementation?
Hi @kojanabzah, you are right, I added this topic because we discussed it in the dotNet Client issue at the deepstream.io repo. Because I never worked before with Specflow I'm...