I am new to Akka. I have 4 actors.
Actor1 sends Message1 to Actor4. Actor2 sends Message2 to Actor4. Actor3 sends Message3 to Actor4.
Actor4 should create Message4 when it receives 1 message of type Message1, 1 Message of type Message2 and 2 messages of type Message3.
Message4 = (Message1, Message2, Message3a, Message3b, Message3c)
What would be the best approach to do this?