Retrofit Call enqueue method or Rxjava

别等时光非礼了梦想. 提交于 2020-03-13 06:21:50

问题


As Retrofit docs represent Call enqueue method in Retrofit is :

Asynchronously send the request and notify callback of its response or if an error occurred talking to the server, creating the request, or processing the response.

and Rxjava according to this tutorial is :

RxJava and RxAndroid libraries allow us to easily do async processing using principles of functional reactive programming

it seems these two have the same approach. What is advantages and disadvantages of each? Which one is better to use?


回答1:


I won't say they have the same approach. Retrofit is specifically designed for API calls which Synchronously or Asynchronously calls an API for you (you can specify that). while RxJava & RxAndroid can do the similar for you (i.e doing some tasks in sync or async), it is not limited to API call only. You can do many wonders with RxJava/Android

As you have quoted that

RxJava and RxAndroid libraries allow us to easily do async processing using principles of functional reactive programming

RxJava & RxAndroid does that with principles of Functional Reactive Programming(FRP). FRP has nothing to do with Retrofit & hence they are not same & can't be compared.

You can also use RxJava/Android with Retrofit for calling API in FRP Pattern.

Please read this so you can get more idea about FRP:

You should read this as well for understanding what operators does RxJava gives & how you could use them

In the end, if by Asynchronous you only meant API calls, then Retrofit is better doing that as it's specially designed for that and if by Asynchronous you meant some other tasks like resource intensive or so, then obviously RxJava/Android will be better if you want async task in FRP pattern like Observer or Observable.



来源:https://stackoverflow.com/questions/46088566/retrofit-call-enqueue-method-or-rxjava

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!