dimsuz
06/16/2017, 5:37 PMObservable
.fromIterable(listOf(1, 2, 3, 4, 5, 6))
.buffer(2)
.flatMapSingle { id -> createNetworkRequest(id) }
.flatMapCompletable { Completable.complete() }
If I understand right, this would cause 3 network requests to be sent in parallel.
How could I instruct rx to send them one after another?