Is there a way to use both RxJava and RxScala in one project?
import rx.lang.scala.{Observable => ScalaObservable}
import rx.{Observable => JavaObservable}
We have a module written in Java that is using the JavaObservable
(RxJava). And then we have a Scala module that is supposed to use the Java module but is written in Scala.
Are there convenient methods to transform these into the other?