Call same retrofit method sequentially for result using RxJava
问题 Complete novice with RxJava here. So please bear with me. I have a Retrofit API which will upload a file. Looks like below @Multipart @POST("api") Observable<ImageUploadResponse> uploadImage(@Part("") MultipartBody.Part body); Also I have an ArrayList with Uri that I need to upload. When I went through the reactive tutorials, I saw that using "Observable.from" can help me in calling the API sequentially. Can some one please help me how to read the response from the API every time the API