How can I have an Akka actor executed every 5 min?

You don’t really need an actor to do this in Akka 1.3.1 you can schedule a function to be called every 5 minutes like this: Scheduler.schedule(() => println(“Do something”), 0L, 5L, TimeUnit.MINUTES) However, if you do want it to be an actor for other reasons you would call it like this case class Message() val … Read more