data class LocalDataState<CACHE : Any>
Local data (data obtained from the user or device, no network fetch call) in apps are in 1 of 2 different types of state: |
|
data class OnlineDataState<CACHE : Any>
Holds the current state of data that is obtained via a network call. This data structure is meant to be passed out of Teller and to the application using Teller so it can parse it and display the data representation in the app. The online data state is not manipulated here. It is only stored. Data in apps are in 1 of 3 different types of state: |