5

我有一个 Akka 演员,它验证随机数据并根据该数据的显示时间对其进行一些更改并更新它。目前我正在做的是在控制器中使用此代码:

static ActorRef instance = Akka.system().actorOf(new Props(ValidateAndChangeIt.class));
static {
    Akka.system().scheduler().schedule(
        Duration.Zero(),
        Duration.create(5, TimeUnit.MINUTES),
        instance, "VALIDATE"
    );
}

在控制器中使用 this 的问题是,有人必须访问由该控制器处理的页面才能启动 actor,如果这没有发生,一切都会暂停。

有没有办法在服务器启动时做到这一点?如果演员产生异常,我实际上不知道它的行为。它会停止未来的计划还是继续?如果没有,有没有办法让演员重新安排时间,以防发生任何崩溃或错误?

4

2 回答 2

13

要在服务器启动时运行代码,请查看Global 对象:将代码从控制器移动到onStart()方法:

public class Global extends GlobalSettings {

  @Override
  public void onStart(Application app) {
    ActorRef instance = Akka.system().actorOf(new Props(ValidateAndChangeIt.class));
    Akka.system().scheduler().schedule(
        Duration.Zero(),
        Duration.create(5, TimeUnit.MINUTES),
        instance, "VALIDATE"
    );
  }  

}
于 2012-04-16T20:01:49.307 回答
1

Play Framework 提供了一种方法,可以在Global.java不显式调用它的情况下完成作业调度。

public class Global extends GlobalSettings {

    private Cancellable scheduler;

    @Override
    public void onStart(Application app) {
        super.onStart(app);
        schedule();
    }

    @Override
    public void onStop(Application app) {
    //Stop the scheduler
        if (scheduler != null) {
            scheduler.cancel();
            this.scheduler = null;
        }
    }
    private void schedule() {
        try {
            ActorRef helloActor = Akka.system().actorOf(new Props(HelloActor.class));
            scheduler = Akka.system().scheduler().schedule(
                    Duration.create(0, TimeUnit.MILLISECONDS), //Initial delay 0 milliseconds
                    Duration.create(30, TimeUnit.MINUTES),     //Frequency 30 minutes
                    helloActor,
                    "tick",
                    Akka.system().dispatcher(), null);
        }catch (IllegalStateException e){
            Logger.error("Error caused by reloading application", e);
        }catch (Exception e) {
            Logger.error("", e);
        }
    }
}

并创建Actor,HelloActor.java 在ononReceive方法中,可以做数据的处理,发送邮件等。

public class HelloActor extends UntypedActor {

    @Override
    public void onReceive(Object message) throws Exception {
        // Do the processing here. Or better call another class that does the processing.
        // This method will be called when ever the job runs.
        if (message.equals("tick")) {
            //Do something
            // controllers.Application.sendEmails();
        } else {
            unhandled(message);
        }
    }
}

希望这可以帮助。

于 2015-04-09T05:49:57.637 回答