安卓架构 组件 网络线程
我目前正在查看以下指南:https://developer.android.com/topic/libraries/architecture/guide.html
网络绑定资源类:
// ResultType: Type for the Resource data
// RequestType: Type for the API response
public abstract class NetworkBoundResource<ResultType, RequestType> {
// Called to save the result of the API response into the database
@WorkerThread
protected abstract void saveCallResult(@NonNull RequestType item);
// Called with the data in the database to decide whether it should be
// fetched from the network.
@MainThread
protected abstract boolean shouldFetch(@Nullable ResultType data);
// Called to get the cached data from the database
@NonNull @MainThread
protected abstract LiveData<ResultType> loadFromDb();
// Called to create the API call.
@NonNull @MainThread
protected abstract LiveData<ApiResponse<RequestType>> createCall();
// Called when the fetch fails. The child class may want to reset components
// like rate limiter.
@MainThread
protected void onFetchFailed() {
}
// returns a LiveData that represents the resource
public final LiveData<Resource<ResultType>> getAsLiveData() {
return result;
}
}
我对线程的使用有点困惑。
为什么@MainThread在这里申请networkIO?
此外,为了保存到数据库中,将应用@WorkerThread,而@MainThread检索结果。
默认情况下,将工作线程用于 NetworkIO 和本地数据库交互是不是不好的做法?
我还查看了以下演示(GithubBrowserSample):https://github.com/googlesamples/android-architecture-components 从线程的角度来看,
这让我感到困惑。
该演示使用执行器框架,并为networkIO定义了一个具有3个线程的固定池,但是在演示中,只有一个调用定义了一个工作线程任务,即.所有其他网络请求似乎都在主线程上执行。FetchNextSearchPageTask
有人可以澄清理由吗?