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 6810413
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:12:10+00:00 2026-05-26T20:12:10+00:00

In Java I have a hobby with thread, for example: Thread thread = new

  • 0

In Java I have a hobby with thread, for example:

Thread thread = new Thread() {

  @Override
  public void run() {
    //use this while loop, I can stop/ interrupt the thread when I want
    while (!isInterrupted()) {
      //...
    }
  }
};
thread.start();

and then, when I want to stop/ interrupt my thread:

thread.interrupt();

So my question is: is there a built-in way (a field/ method/ function…) in Scala that I can stop/ interrupt an actor?

This is my background: I’m new to Scala, I’m really learning to code. And I’m finding my best way between actor and thread. From my point of view, I like the new approach – actor.

P.S: Sorry for my English…

  • 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-05-26T20:12:10+00:00Added an answer on May 26, 2026 at 8:12 pm

    As indicated by the other answer, the actor model is specifically designed to restrict all interaction with an Actor to message passing and handling. Scala/Akka accomplish this by forcing you to create an Actor by calling the actorOf method. Since you don’t have a reference to the underlying object, you can’t call methods on it directly.

    So, if you want to have an Actor that can be interrupted, just handle some message that does that.

    def receive = {
      case 'Interrupt => // handle interruption...
    }
    

    and in your client code

    a ! 'Interrupt
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does Java have a built-in way to escape arbitrary text so that it can
Does Java have buffer overflows? If yes can you give me scenarios?
I am new to Java. I just read that class variables in Java have
Does java have a built-in method to compare precedence of two operators? For example,
Does Java have the possibility of anonymous enums? For example, I want my class
Does Java have a using statement that can be used when opening a session
While simple, interface-driven event notification frameworks in Java have been around since pre-Cambrian times
Is there a way to use memcahce in java ? or Does java have
Why can't Java classes have abstract fields like they can with abstract methods? For
The java have a script manager that allow java calling javascript, like this: import

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.