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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T09:03:41+00:00 2026-05-13T09:03:41+00:00

I am looking for a class similar to ThreadLocal which would work on thread

  • 0

I am looking for a class similar to ThreadLocal which would work on thread groups instead of threads.

If there is not such a class (in some open source library) how would you implement it? Some better idea than having thread groups in WeakHashMap?

I am implementing a debugging framework tunable in run-time with various parameters in global, per-thread and per-thread group contexts. As a very simple example, you can have a reporting statement:

debug.log( category, message);

and specify that the log entry with that specific category will be displayed only when called by a thread in group of threads servicing network requests.

  • 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-13T09:03:41+00:00Added an answer on May 13, 2026 at 9:03 am

    I would store a value holder in a thread local and initialize it to the same value holder for all threads of the same group.

     public class ThreadGroupLocal<T> extends ThreadLocal<ValueHolder> {
         private static class ValueHolder {
             public Object value;
         }
         // Weak & Concurrent would be even the better, but Java API wont offer that :(
         private static ConcurrentMap<ThreadGroup, ValueHolder> map = new ConcurrentHashMap<ThreadGroup, ValueHolder>;
         private static ValueHolder valueHolderForThread(Thread t) {
             map.putIfAbsent(t.getThreadGroup(), new ValueHolder());
             return map.get(t.getThreadGroup());
         }
         @Override 
         protected ValueHolder initialValue() {
             return valueHolderForThread(Thread.currentThread());
         }
         public T getValue() { (T) get().value; }
         public void setValue(T value) { get().value = value; }
     }
    

    and then use

     ThreadGroupLocal<String> groupLocal = new ThreadGroupLocal<String>();
     groupLocal.setValue("foo");
     //...
     String foo = groupLocal.getValue();
    

    That does (expect for the initialization) perform exactly like a thread local.

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

Sidebar

Ask A Question

Stats

  • Questions 256k
  • Answers 256k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer For documentation about calling conventions and how are the parameter… May 13, 2026 at 10:36 am
  • Editorial Team
    Editorial Team added an answer Within your setup project right click project and select View… May 13, 2026 at 10:36 am
  • Editorial Team
    Editorial Team added an answer You could use a JPQL query that looks very similar… May 13, 2026 at 10:36 am

Related Questions

I am looking for a regular exression matching spaces only if thos spaces are
Possible Duplicate: Plugging in to Java compilers Edit - this appears to be a
PHP provides associative arrays but there is no such thing in classical asp. I
I am looking for a data structure that operates similar to a hash table,
I am looking for a way to branch (tee) the input read from an

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.