RxJava2CallAdapterFactory.create()的作用是什么......
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("https://api.example.com")
.addCallAdapterFactory(RxJava2CallAdapterFactory.create())
.build();
答案 0 :(得分:1)
来自说明:
使用RxJava 2创建可观察对象的调用适配器。将此类添加到Retrofit允许您从服务方法返回Observable,Flowable,Single,Completable或Maybe。
interface MyService {
@GET("user/me")
Observable<User> getUser()
}
没有它你就不能将接口描述为rx类型