Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7819273
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T06:52:45+00:00 2026-06-02T06:52:45+00:00

I have an Akka actor that validates random data and makes some changes to

  • 0

I have an Akka actor that validates random data and makes some changes to it based on that data’s show time and updates it. Currently what I’m doing is using this code inside a controller:

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

The problem with using this inside a controller is that someone has to access a page processed by that controller for the actor to start, and if this doesn’t happen, everything stays paused.

Is there a way to do this at server start? I actually don’t know how it behaves if the actor generates an exception. Does it stop future schedules or does it continue? In case it doesn’t, is there any way of making the actor re-schedule in case any crash or error?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T06:52:53+00:00Added an answer on June 2, 2026 at 6:52 am

    For running your code at server startup, take a look at the Global object: move the code from your controller to the onStart() method:

    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"
        );
      }  
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an Akka Actor that makes a call to MyObject.foo() . MyObject is
I have a Scala application using Akka that receives REST requests, makes some operations
I have a currently running PHP application that I want to add real-time feed
I'd like to know if there are any mechanism in Akka that can have
I am writing a distributed application in Scala that uses Akka actors. I have
Suppose I have an actor that has a single field. 99 out of every
I have developed a financial data distribution server with Akka, and I want to
Can an Akka anonymous actor have access to self? In my particular case I'm
Have a bunch of WCF REST services hosted on Azure that access a SQL
Recently I was switching from scala actors to akka actors, but noticed that akka

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.