DataRepository
Deprecated
This Class is deprecated. Use DataSourceImpl instead
Replace with
import com.king.frame.mvvmframe.data.datasource.DataSourceImpl
Content copied to clipboard
DataSourceImpl
Content copied to clipboard
数据仓库
此类从v3.1.0版本开始已标记为废弃,后续版本可能会移除;
为了更适用于大型项目,所以细化了分层粒度;新增了数据源层:DataSource,然后将本类中原来提供获取 的getRetrofitService和getRoomDatabase已迁移到DataSource,迁移后分层看起来更清晰。
后续获取getRetrofitService和getRoomDatabase请使用DataSource;通常在定义的Repository中 持有DataSource即可。
Author
Functions
Link copied to clipboard
传入API接口类的Class,通过Retrofit.create 获得对应的Class
Link copied to clipboard
传入数据库类的Class,通过Room.databaseBuilder获得对应的RoomDatabase 实现