Category "rx-java3"

How to handle Single<Single<String>> in RX?

I have an api with a method fun getList( @Path("array") array: String ): Single<List<EpisodeRetrofitModel>> I need an argument to u

How do I check in an operator that current element is last element?

Context: To process a Flowable<Item>, I need to first process the first item and then depending on that either accumulate all items into a single item (re