Is there a way to use RxJava and RxScala in the same project?
import rx.lang.scala.{Observable => ScalaObservable}
import rx.{Observable => JavaObservable}
We have a module written in Java that uses JavaObservable
(RxJava). And then we have a Scala module that should use the Java module, but written in Scala.
Are there convenient methods for converting them to others?
source
share