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

  • Home
  • SEARCH
  • 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 9124571
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T06:36:07+00:00 2026-06-17T06:36:07+00:00

when having java Threads communicating with each other, but no explicit synchronization is required

  • 0

when having java Threads communicating with each other, but no explicit synchronization is required (so no need to call synchronize on an object to synchronize execution), what is the best practice to ensure proper visibility among involved threads?

For example:

class B extends Thread {
     ...
     A instanceOfA = ...;

     B(){
          instanceOfA.registerHandler(new Handler(){
               @Override
               handle(SomeObjectToBeVisibile o){
                  ...
               }
          });
     }
}

class A extends Thread {
     ...
     void registerSomeHandlerMethod(HandlerMethod handler){...}

     void executeHandlers(){
          for(each registered handler){
              handler.handle(instanceOfSomeObjectToBeVisible); 
          }

     }
}

If I am not mistaken, there is a potential visibility problem to the handlers “handle” method calls passing some constructed object which then might not be visible the proper way in the receiving thread (stale values, e.g.), right? If yes, how to force visibility without using synchronized?

Thanks.

  • 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-17T06:36:09+00:00Added an answer on June 17, 2026 at 6:36 am

    Don’t be afraid of synchronization, if the synchronized block is small and fast, which is true in your case, lock-unlock won’t cause any problems.

    You could use a “lock-free” concurrent data structure, like ConcurrentLinkedQueue. (It is not going to be a lot faster for your case)

    EDIT: it looks like you are worrying about the visibility of the argument passed to handle(), not handlers themselves.

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

Sidebar

Related Questions

I am having problem dealing with synchronization java threads, applying wait and notify.. I
I am having difficulty with Java threads. In this program I want it to
I am developing a Swing/Java app but having difficulties passing data from the initiliaser
I am having a problem in running two threads in parallel. Each of the
I hava a java application that uses Buffers to pass object around between threads.
I am having a method that is accessed by multiple threads in the java
I'm having a bit of difficulty understanding how to synchronize ArrayList's between threads in
I'm having a-bit of trouble with threads in java. Basically Im creating an array
I'm having a problem with multi-threading in Java. I need to compare a large
I'm having a problem where I receive this error: Exception in thread main java.lang.NullPointerException

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.