Skip to content

Instantly share code, notes, and snippets.

@kuflash
Created April 17, 2015 09:59
Show Gist options
  • Save kuflash/3cb1e2416381ff9309ee to your computer and use it in GitHub Desktop.
Save kuflash/3cb1e2416381ff9309ee to your computer and use it in GitHub Desktop.
// For starting job in background
long offset = startDate.getTimeInMillis() - currentDate.getTimeInMillis();
ActorRef sceduler = Akka.system().actorOf(Props.create(ThreadJob.class));
Akka.system().scheduler().scheduleOnce(FiniteDuration.create(offset, TimeUnit.MILLISECONDS),sceduler, "ping", Akka.system().dispatcher(), ActorRef.noSender());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment