Question

Is it possible to do something similar to LINQ to Events in Scala? Is this similar to the new Traversable trait in Scala 2.8?

Was it helpful?

Solution 2

Yes there is - it's RxScala. It's a Scala adapter for the RxJava project.

OTHER TIPS

To make an analogy, it sounds like (in .NET) IObservable is to IEnumerable what (in Scala) Traversable is to Iterable. That's just an interface though. The broader Rx (LINQ to Events) project sounds like Functional Reactive Programming (FRP) in .NET. For Scala, Ingo Maier is working on something like this under the name ScalaFX.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top