I\'d like to know if there are any mechanism in Akka that can have an actor executed periodically?
If anyone want java code then they can do like this
Cancellable cancellable = system.scheduler().schedule(Duration.Zero(), Duration.create(5, TimeUnit.MINUTES), cronActor, "tick", system.dispatcher(), null);