More formal support for Scala · Issue #208 · ReactiveX/RxJava (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Description
I'm still in the middle of fleshing this out, but roughly:
- Removal of all Object methods from rx-core
- Scala RxJava usage doesn't depend on runtime class lookup - instead it uses some implicits from Scala function types to Rx Func1, Func2, ..., FuncN to assert type safety while using native Scala closures
- Unit tests to demonstrate full coverage of Observable methods using Scala
Given the first point above, this will have to be combined with #204, so that support for dynamic languages continues.