Top "Rx-kotlin" questions

RxJava bindings for Kotlin programming language

Create New Instance of Kotlin Object

I have an object QuickSort that I am attempting to create 2 instances of. When I try to create 2 separate instances …

kotlin kotlin-android-extensions kotlin-extension rx-kotlin
How Kotlin coroutines are better than RxKotlin?

Why would I want to use Kotlin's coroutines? It seems that the RxKotlin library is much more versatile. Kotlin's coroutines …

kotlin rx-kotlin
How to read JSON from Url using kotlin Android?

Am using kotlin for developing the application.Now i want to get JSON data from server. In java am implemented …

android kotlin rx-kotlin
Kotlin merge two nullable mutable list

val mutableList1: MutableList<TeamInvitationData?>? val mutableList2: MutableList<TeamInvitationData?>? addAll method can be use to merge nullable …

android kotlin rx-kotlin
How to pass null to an Observable with nullable type in RxJava 2 and Kotlin

I initialize my variable like this:- val user: BehaviorSubject<User?> user = BehaviorSubject.create() But I can't do …

android kotlin rx-java rx-java2 rx-kotlin
How to zip few observables in Kotlin language with RxAndroid

I have some problem. I'm a beginer in RxJava/RxKotlin/RxAndroid, and dont understand some features. For Example: import rus.…

android rx-java kotlin rx-android rx-kotlin
Use RxAndroid or RxKotlin when programming in Kotlin for Android?

I am going to start using reactive programming in my Android project. I am using Kotlin as primary language and …

android rx-android rx-kotlin
How to parse below Json data in Kotlin?

I need to parse this information- [ { "artist": "12", "image": "23" }, { "video_id": "12", "video_title": "23" }, { "video_id": "12", "video_title": "23" }, { "video_id": "12", "video_title": "23" }, { "…

kotlin android-volley kotlin-android-extensions kotlin-extension rx-kotlin
What is the use case for doOnSuccess vs onSuccess in rxJava

I'm confusing about use case for doOnSuccess in rxJava. Let's see the code: Case 1: networkApi.callSomething() .subscribeOn(Schedulers.io()) .observeOn(…

android retrofit rx-java rx-kotlin
RxJava Maybe: Any neat way to handle Empty case?

I am stuck at this problem, which should be fairly simple. I need subscriber to execute a code block when …

kotlin rx-java rx-kotlin