Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I am extending an existing ThreadFactory implementation, how would I go able ensuring that all threads created would have the same prefix? I'm sick and tired of looking at Thread-9 in my logs and would like to distinguish between threads more easily.

Does anyone have any suggestions as to how to go about this?

share|improve this question

2 Answers

up vote 4 down vote accepted

Provide your own implementation of the ThreadFactory interface:

pool = Executors.newScheduledThreadPool(numberOfThreads, new TF());

class TF implements ThreadFactory {
    public synchronized Thread newThread(Runnable r) {
        Thread t = new Thread(r) ;
        t.setName("Something here....");  
        return t;
    }
}
share|improve this answer
Thanks for the example. However, the API I am using only allows me to specify the ThreadPool class implementation and not the ThreadFactory implementation. – Elijah Apr 28 '09 at 13:12
What do you mean by ThreadPool class ? Which interface do you have to work with ? Executor ? – Brian Agnew Apr 28 '09 at 13:16
Wow. I feel stupid. ThreadPool is an interface in Quartz. Thank you for your answer. I think it will be useful. I'm going to update the question. – Elijah Apr 28 '09 at 14:24

Can you provide your own ThreadFactory ? That will allow you to create threads with whatever naming convention you require.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.