Is there some doco on IAutoSubscriptionService. How do I use using (ESP.GetEcoService().StartSubscribe(subscriber)) to trigger an event when an object changes. That is for any attribute of an object.
Subscribing to Object value or associated change
29 views Asked by Steve.Au At
1
The StartSubscribe gives a IDisposable context back and it is typically used like this:
When something later change - the ISubscriber.Receive will fire. For adhoc usage consider the EventSubscriber class