In Play 1.0, we can define some jobs which will be executed in the background:
@OnApplicatonStart @Every(\"1h\") public class DataJob extends Job { publi
For the acutal job part this seems to be the way in Java,
Akka.system().scheduler().schedule( Duration.create(0, MILLISECONDS), // initial delay Duration.create(5, MINUTES), // run job every 5 minutes new Runnable() { public void run() { .... } } );