Here's a short example of what I want to do:
abstract class Message()
case class FooMessage() extends Message
case class BarMessage() extends Message
//... other messages ...
trait Component
{
def handleMessage(msg: Message):Unit
}
trait ComponentType1 extends Component
{
abstract override def handleMessage(msg: FooMessage) = {
//handle foo, pass it up the chain
super.handleMessage(msg)
}
abstract override def handleMessage(msg: BarMessage) = {
//handle bar, pass it up the chain
super.handleMessage(msg)
}
}
//handles some other messages, also might handle the same messages as ComponentType1
trait ComponentType2 extends Component { .. }
Then, these ComponentTypes are mixed in to a class to form an object that is completely composed of modular components.
I have a bunch of different Messages and a bunch of different Components.
- Not all components handle all message types.
- Multiple components can handle the same message type.
- The message cascades up through the components, even if it's handled by another component.
- A Component can handle more than one message type.
The problem is since handleMessage is defined in Component as accepting a Message, when I try to specialize the msg parameter it doesn't count as an override.
I know one possible solution to this is to declare a big handleMessage method with a big match statement, but I'd like to define a method per message if possible.