Skip to content

Commit

Permalink
网络框架优化
Browse files Browse the repository at this point in the history
  • Loading branch information
XinYiWorld committed Jul 18, 2017
1 parent 9719a17 commit 451b619
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,10 @@ public void onNext(Object targetBean) {
hideProgressView();
if (targetBean != null && httpResultHandler != null) {
httpResultHandler.onSuccess(getRequestCode(), null,targetBean);
//分发到多个结果处理器上
for (I_HttpResultHandler httpResultHandler: bindedHttpResultHandlers){
httpResultHandler.onSuccess(getRequestCode(), null,targetBean);
}
}
}
};
Expand Down

0 comments on commit 451b619

Please sign in to comment.