Network change list #442
-
Hi, I have noticed that all three external models ( |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi there. For synchronization to work, there needs to be som sort of token to let the app know how valid its data is relative to the network. If there are no tokens (in NiA, this is the change list), consider using a pull based approach. In this case you may load the same data multiple times over, and there most likely won't be a |
Beta Was this translation helpful? Give feedback.
Hi there.
For synchronization to work, there needs to be som sort of token to let the app know how valid its data is relative to the network. If there are no tokens (in NiA, this is the change list), consider using a pull based approach.
In this case you may load the same data multiple times over, and there most likely won't be a
syncWith()
method. You VM may just call arefresh()
method that goes to fetch data again. See an example of this in the architecture samples repo.