ARTEMIS-874: ThreadGroup memory leak

This commit is contained in:
dOkI 2017-05-05 22:10:59 +05:00 committed by Clebert Suconic
parent 4f22a56066
commit 18bc7e1a2e
1 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ import java.util.concurrent.atomic.AtomicInteger;
public final class ActiveMQThreadFactory implements ThreadFactory {
private final ThreadGroup group;
private String groupName;
private final AtomicInteger threadCount = new AtomicInteger(0);
@ -59,7 +59,7 @@ public final class ActiveMQThreadFactory implements ThreadFactory {
* @param tccl the context class loader of newly created threads
*/
public ActiveMQThreadFactory(final String groupName, String prefix, final boolean daemon, final ClassLoader tccl) {
group = new ThreadGroup(groupName + "-" + System.identityHashCode(this));
this.groupName = groupName;
this.prefix = prefix;
@ -97,7 +97,7 @@ public final class ActiveMQThreadFactory implements ThreadFactory {
}
private Thread createThread(final Runnable command) {
final Thread t = new Thread(group, command, prefix + threadCount.getAndIncrement() + " (" + group.getName() + ")");
final Thread t = new Thread(command, prefix + threadCount.getAndIncrement() + " (" + groupName + ")");
t.setDaemon(daemon);
t.setPriority(threadPriority);
t.setContextClassLoader(tccl);