There is problem with SAM conersion unfortunately:...
# rx
g
There is problem with SAM conersion unfortunately: For pure RxJava2 without RxKotlin youneed:
Copy code
val integ = Single.just(2)
val str = Single.just("a")
val bool = Single.just(true)

Single.zip(integ, str, bool,  Function3 { a: Int, b: String ,c: Boolean ->
    //code""
})