It is used internally (by pipe) and is useful for some plugins. For example, the plugin mirror emit an event to the server on changes, and set its data when some data are received from the server.
Without the strict node, we will send date in loop to the server (data from server - set local store and trigger change - send data to server on change).
My question is: is there a better way to prevent to send data in loop to the server?
I added an event 'updated' which is trigerred on set, del and reset. You can choose to trigger or not this event by setting the strict mode to true:
It is used internally (by pipe) and is useful for some plugins. For example, the plugin mirror emit an event to the server on changes, and set its data when some data are received from the server.
Without the strict node, we will send date in loop to the server (data from server - set local store and trigger change - send data to server on change).
My question is: is there a better way to prevent to send data in loop to the server?