Purpose of the Converter
The Converter serves as a bridge between different data representations. The Store uses the Converter to convert data between the network, local database, and domain models.APIs
Converter
The Converter interface has the following structure:Any
required
The type representing the data fetched from the remote source. For example, if
fetching a list of posts, this could be
List<Post> representing the list
of posts.Any
required
The type representing the local database model representation of the item
being retrieved.
Any
required
The type representing the domain data model representation of the item being
retrieved.
fromNetworkToLocal
Converts a network data model into a local data model suitable for storage.
Network
required
The network data model to be converted.
fromOutputToLocal
Converts a domain data model into a local data model suitable for storage.
Output
required
The network data model to be converted.