Created
November 29, 2012 14:06
-
-
Save helena/4169302 to your computer and use it in GitHub Desktop.
Implement a simple Akka app in Scala, and implement 2 processor Actors, improve the design
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package foo | |
import akka.actor.{Actor, ActorSystem} | |
import akka.util.Timeout | |
/** | |
* Implement a simple application in Akka and Scala: | |
* Don't worry about spending too much time on it, or | |
* everything being perfect if you are not yet familiar... | |
* I just want to see how you think on something simple, | |
* but if you want to show me some sweet code, go for it. | |
*/ | |
class SimpleDesign extends App { | |
implicit val system = ActorSystem("example") | |
implicit val timeout = Timeout(5 seconds) | |
import system.dispatcher | |
// TODO create 2 instances of a Processor Actor - you can decide what they process | |
// TODO send event message to one actor | |
// TODO send event message to the other actor, and receive response back | |
// TODO insure everything has been processed | |
// then shutdown | |
system.shutdown() | |
} | |
sealed trait EventMessage | |
case class Ping(msg: Any) extends EventMessage | |
case class Pong(msg: Any) extends EventMessage | |
/** | |
* TODO refactor the two Processor designs for any code reuse, templating, etc: | |
* | |
* | |
* Implement some simple processing | |
*/ | |
class ProcessorA extends Actor { | |
/** | |
* TODO complete the actor receive cases | |
*/ | |
def receive = { | |
case todo => | |
// TODO process received data | |
// TODO return outcome to sender | |
} | |
} | |
/** | |
* TODO ProcessorB must processes input differently than ProcessorA | |
*/ | |
class ProcessorB extends Actor { | |
/** | |
* TODO complete the actor receive cases | |
*/ | |
def receive = { | |
case todo => | |
// TODO process received data | |
// TODO return outcome to sender | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment