Created
February 25, 2013 21:13
-
-
Save EECOLOR/5033368 to your computer and use it in GitHub Desktop.
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
import play.api.libs.concurrent.Akka | |
import akka.actor.{ Props, Actor } | |
import concurrent.ExecutionContext | |
import scala.concurrent.duration._ | |
import ExecutionContext.Implicits.global | |
import play.api.test._ | |
object AkkaScheduler extends WithApplication with App { | |
case object Tick | |
class MonitorLoad extends Actor { | |
def receive = { | |
case Tick => { | |
println("Got tick") | |
} | |
} | |
} | |
println("Test code") | |
val monitorActor = Akka.system.actorOf(Props[MonitorLoad], name = "monitorLoad") | |
Akka.system.scheduler.schedule(0.seconds, 2.seconds, monitorActor, Tick) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment