2012-11-20 17 views
13

nel doc 2.0.x del gioco si può vedere come pianificare le operazioni asincrone:quadro gioco 2.1 - compiti di programmazione asincroni

http://www.playframework.org/documentation/2.0.4/ScalaAkka

Akka.system.scheduler.schedule(0 seconds, 30 minutes, testActor, "tick") 

Come si può ottenere la stessa cosa withthe releades recente Gioca 2.1? ??

L'intera API Akka sembra essere cambiato ...

Ho controllato:

https://github.com/playframework/Play20/wiki/Highlights https://github.com/playframework/Play20/wiki/Migration e anche http://doc.akka.io/docs/akka/2.1.0-RC1/project/migration-guide-2.0.x-2.1.x.html

chiesto anche qui: https://groups.google.com/d/topic/play-framework/7VcwNea6QlM/discussion

risposta

20

Utilizzando sample code e Akka API Ho fatto un test veloce, lavora per me.

Confrontando codice tra 2.0.4 e 2.1RC1 posso vedere Ci sono solo due variazioni in caso di scheduler:

  1. sostituito importazione

    // import akka.util.duration._ 
    import scala.concurrent.duration._ 
    
  2. importazione aggiunto:

    import play.api.libs.concurrent.Execution.Implicits._ 
    

app/controllers/Application.scala

package controllers 

import play.api._ 
import play.api.mvc._ 
import play.libs.Akka 

import akka.actor._ 
import scala.concurrent.duration._ 
import play.api.libs.concurrent.Execution.Implicits._ 

object Application extends Controller { 

    def index = Action { 

    // say hello 
    Logger.info("hello, index action started") 

    val Tick = "tick" 
    val Tack = "tack" 

    val tickActor = Akka.system.actorOf(Props(new Actor { 
     def receive = { 
     case Tick => Logger.info("that still ticks!") 
     case Tack => Logger.warn("... 7 seconds after start, only once") 
     } 
    })) 

    // Repeat every 5 seconds, start 5 seconds after start 
    Akka.system.scheduler.schedule(
     5 seconds, 
     5 seconds, 
     tickActor, 
     Tick 
    ) 

    // do only once, 7 seconds after start 
    Akka.system.scheduler.scheduleOnce(7 seconds, tickActor, Tack) 

    Ok(views.html.index("Your new application is ready.")) 
    } 

} 

Modifica

Nota bene, come posso vedere dal post di Julien sul gruppo, che è abbastanza per importare defaultContext solo:

import play.api.libs.concurrent.Execution.Implicits.defaultContext 
9

biesior's answer è grande

Tuttavia, non è avere a g o attraverso un attore se non vuoi. Ecco la stessa risposta utilizzando il buon vecchio java.lang.Runnable:

Akka.system.scheduler.schedule(5 minutes, 5 minutes, new Runnable { 
    def run() { 
    Logger.info("that still ticks!") 
    } 
}) 
Akka.system.scheduler.scheduleOnce(7 minutes, new Runnable { 
    def run() { 
    Logger.warn("... 7 seconds after start, only once") 
    } 
}) 
2

Per esempio eseguire un'operazione ogni Sabato alle 15 AM in Java:

DateTime now = new DateTime(); 

DateTime plannedStart = new DateTime() 
    .withDayOfWeek(DateTimeConstants.SATURDAY) 
    .withHourOfDay(15) 
    .withMinuteOfHour(0) 
    .withSecondOfMinute(0) 
    .withMillisOfSecond(0); 

DateTime nextRun = (now.isAfter(plannedStart)) 
    ? plannedStart.plusDays(7) 
    : plannedStart; 

Long nextRunInSeconds = (long) secondsBetween(now, nextRun).getSeconds(); 

Akka.system().scheduler().schedule(
    Duration.create(nextRunInSeconds, TimeUnit.SECONDS), 
    Duration.create(7, TimeUnit.DAYS) , 
    new Runnable() { 
     public void run() { 
      Logger.info("-------------------------scheduler start : " + new DateTime()); 
     } 
    }, 
    Akka.system().dispatcher() 
); 
Problemi correlati