I have read that Loader
s monitor the underlying data-source for changes, and load new data whenever it becomes available.
My question is that when would the data in the data source change? Any examples will be appreciated.
- Forexample let's say an app uses a user-entered search query to perform search, and the search results are returned in an array. So since we have performed the search once, and the search results have been received in the array, in what cases could this data in the returned array change (which is being monitored by the
Loader
) ?