Hi! If I have this rx chain: ``` Observable .f...
# rx
d
Hi! If I have this rx chain:
Copy code
Observable
  .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?