-
Notifications
You must be signed in to change notification settings - Fork 267
如何支持Okhttp Request
Tamic (码小白) edited this page Jul 19, 2017
·
5 revisions
喜欢okhtp姿势的朋友可以继续使用姿势:
Request request =
new Request.Builder()
.get()
.url("you url")
.build();
novate.execute(request, new RxStringCallback() {
@Override
public void onError(Object tag, Throwable e) {
}
@Override
public void onCancel(Object tag, Throwable e) {
}
@Override
public void onNext(Object tag, String response) {
}
});