I have trouble creating an Observable with the following conditions:
- Fetch items from API. API can return between 0 and 10 items.
- If less then 10 items is returned, request more items from the API.
- Repeat 5 times or till 10 or more items are collected.
So far I have this Observable:
fetchData().flatMapIterable { dataList }
.distinct()
.filter { --some filtering--- }
.repeat(5)
.take(10)
.toList()
This works ok, with one nitpick. If API returns 9 items and then 10 items, the Observable returns 10 items. The remaining 9 are discarded and I don't want that. Any way to make it work that way?
Have it collect into a list shared across multiple steps and perform a conditional repeat: