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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T00:55:55+00:00 2026-06-02T00:55:55+00:00

If i have this synchronized code which i want to replace with actors with

  • 0

If i have this synchronized code which i want to replace with actors with no synchronization, how?

public synchronized int incrementAndGet() {
  i = i + 1;
  return i;
}

and i have a bunch of users in web site where i need to return each an incrementing number…
how can i replace that code with actors code which have no synchronizations thus have no blocking synchronizing code. which i guess would thenn be able to run it on multicores etc (isn’t that the purpose of actors?).

  • 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-02T00:55:56+00:00Added an answer on June 2, 2026 at 12:55 am

    A simple actor wrapping i in its internal state:

    case object Inc
    
    class IncrementingActor extends Actor {
        var i = 0
    
        protected def receive = {
            case Inc =>
                i += 1
                sender ! i
        }
    }
    

    And blocking usage (you need to obtain incrementAndGet somehow):

    import akka.pattern.ask
    
    def incrementAndGet() = 
      Await.result((incrementingActor ? Inc).mapTo[Int], 1 seconds)
    

    This code is: slow, complicated and non-idiomatic. What about AtomicInteger?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some code like this: doDatabaseFetch { ... @synchronized(self) { ... } }
I have this class: public class MyClass { public MyClass(){} public void actionA(){ synchronized(MyClass.class){
In JCIP we have a piece of code which looks like this: Listing 4.2:
have this code: template<typename T, template<typename, typename> class OuterCont, template<typename, typename> class InnerCont, class
i have this code local strs = my dog print (string.gsub( strs , ,%20))
I have a multithreaded Java code in which: several threads read stateful objects from
I have the following code which I'm trying to write a LRU Cache. I
I have the following thread which simply prints a dot every 200ms: public class
We have a lot of class code which has some boilerplate like the following:
I am have some bitmaps which i want to display serially one after another

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.