Tagged Questions

2
votes
2answers
65 views

Symbols or Case Classes for sending messages to Scala Actors?

In the Scala actor examples I have seen where a parameterless message is sent to an actor (such as this), case classes (or case objects) have been created and then used as messages. Symbols work just …
2
votes
2answers
212 views

Case class to map in Scala

Does anyone know if there is a nice way I can convert a Scala case class instance, e.g. case class MyClass(param1: String, param2: String) val x = MyClass("hello", "world") Into a mapping of some …
5
votes
1answer
220 views

How is this case class match pattern working?

I've just seen this case class in the Scala actors package: case class ! [a](ch: Channel[a], msg: a) And in the JavaDoc it describes usage in the following form: receive { case Chan1 ! msg1 …