Question
DotNet SDK - Best way to implement queue and buffering to update properties
We have various properties that are updating very frequently. What will be the best way to implement this using the .Net SDK?
Do we need to create separate threads to update properties?
Current code looks like this, which is the default implementation, however for properties that are updating very frequently, what would be the best way?
targetThing.setProperty(propertyName, value);
targetThing.updateSubscribedProperties(15000);

