Limit throughput with RxJava
问题 The case I'm into right now is quite hard to explain so I will write a simpler version just to explain the issue. I have an Observable.from() which emits a sequence of files defined by an ArrayList of files. All of these files should be uploaded to a server. For that I have an function that does the job and returns an Observable . Observable<Response> uploadFile(File file); When I run this code it gets crazy, the Observable.from() emits all of the files and they are uploaded all at ones, or