More formal support for Scala · Issue #208 · ReactiveX/RxJava (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

@mattrjacobs

Description

@mattrjacobs

I'm still in the middle of fleshing this out, but roughly:

  1. Removal of all Object methods from rx-core
  2. 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
  3. 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.