Skip to content Skip to sidebar Skip to footer
Showing posts with the label Rx Java

Rxjava 1 And Rxjava 2 In The Same Project

Our project uses RxJava 1: compile 'io.reactivex:rxjava:1.1.6' There is a library we use t… Read more Rxjava 1 And Rxjava 2 In The Same Project

How To Make Observable That Emit Character After 1 Second Of Time Interval

I have just started with RxJava/android and for practice and getting started I want to make observa… Read more How To Make Observable That Emit Character After 1 Second Of Time Interval

Rx-java Pass By Reference Or Pass By Value?

In java methods everything is passed-by-value so i can change the object attributes passed to the m… Read more Rx-java Pass By Reference Or Pass By Value?

Retrofit + Rxjava: How To Implement Iterable N Requests?

I have a problem to implement following problem: I'm making a request that fetches all active l… Read more Retrofit + Rxjava: How To Implement Iterable N Requests?

How To Send Array Of Objects In Retrofit Multipart Request

I want to send array objects with multipart data. I tried many ways but it is not working. My issue… Read more How To Send Array Of Objects In Retrofit Multipart Request

Implementing Repository Pattern With Rxjava

I'm trying to figure out a better way to achieve something like repository pattern in RxJava in… Read more Implementing Repository Pattern With Rxjava

Mapping Custom Data Rxandroid With Kotlin

I am trying to convert examples from this article from Java to Kotlin. I get error from picture at … Read more Mapping Custom Data Rxandroid With Kotlin

How To Debounce A Retrofit Reactive Request In Java?

I'm working on an android project that makes requests through retrofit using Rx-Java observable… Read more How To Debounce A Retrofit Reactive Request In Java?