Threads groups in java

Class ThreadGroup

A thread group represents a set of threads. In addition, a thread group can also include other thread groups. The thread groups form a tree in which every thread group except the initial thread group has a parent.

A thread is allowed to access information about its own thread group, but not to access information about its thread group’s parent thread group or any other thread groups.

Constructor Summary

Method Summary

This method is only useful in conjunction with the Security Manager, which is deprecated and subject to removal in a future release.

Copies into the specified array references to every active subgroup in this thread group and its subgroups.

This method is used solely in conjunction with Thread.suspend and ThreadGroup.suspend , both of which have been deprecated, as they are inherently deadlock-prone.

Called by the Java Virtual Machine when a thread in this thread group stops because of an uncaught exception, and the thread does not have a specific Thread.UncaughtExceptionHandler installed.

Methods declared in class java.lang.Object

Constructor Details

ThreadGroup

Constructs a new thread group. The parent of this new group is the thread group of the currently running thread. The checkAccess method of the parent thread group is called with no arguments; this may result in a security exception.

ThreadGroup

Creates a new thread group. The parent of this new group is the specified thread group. The checkAccess method of the parent thread group is called with no arguments; this may result in a security exception.

Читайте также:  Установка nginx mysql php centos

Method Details

getName

getParent

Returns the parent of this thread group. First, if the parent is not null , the checkAccess method of the parent thread group is called with no arguments; this may result in a security exception.

getMaxPriority

Returns the maximum priority of this thread group. Threads that are part of this group cannot have a higher priority than the maximum priority.

isDaemon

The API and mechanism for destroying a ThreadGroup is inherently flawed. The ability to explicitly or automatically destroy a thread group, and the concept of daemon thread group, will be removed in a future release.

Tests if this thread group is a daemon thread group. A daemon thread group is automatically destroyed when its last thread is stopped or its last thread group is destroyed.

isDestroyed

The API and mechanism for destroying a ThreadGroup is inherently flawed. The ability to explicitly or automatically destroy a thread group will be removed in a future release.

setDaemon

The API and mechanism for destroying a ThreadGroup is inherently flawed. The ability to explicitly or automatically destroy a thread group, and the concept of daemon thread group, will be removed in a future release.

Changes the daemon status of this thread group. First, the checkAccess method of this thread group is called with no arguments; this may result in a security exception. A daemon thread group is automatically destroyed when its last thread is stopped or its last thread group is destroyed.

setMaxPriority

Sets the maximum priority of the group. Threads in the thread group that already have a higher priority are not affected. First, the checkAccess method of this thread group is called with no arguments; this may result in a security exception. If the pri argument is less than Thread.MIN_PRIORITY or greater than Thread.MAX_PRIORITY , the maximum priority of the group remains unchanged. Otherwise, the priority of this ThreadGroup object is set to the smaller of the specified pri and the maximum permitted priority of the parent of this thread group. (If this thread group is the system thread group, which has no parent, then its maximum priority is simply set to pri .) Then this method is called recursively, with pri as its argument, for every thread group that belongs to this thread group.

parentOf

checkAccess

This method is only useful in conjunction with the Security Manager, which is deprecated and subject to removal in a future release. Consequently, this method is also deprecated and subject to removal. There is no replacement for the Security Manager or this method.

Determines if the currently running thread has permission to modify this thread group. If there is a security manager, its checkAccess method is called with this thread group as its argument. This may result in throwing a SecurityException .

activeCount

Returns an estimate of the number of active threads in this thread group and its subgroups. Recursively iterates over all subgroups in this thread group. The value returned is only an estimate because the number of threads may change dynamically while this method traverses internal data structures, and might be affected by the presence of certain system threads. This method is intended primarily for debugging and monitoring purposes.

enumerate

Copies into the specified array every active thread in this thread group and its subgroups. An invocation of this method behaves in exactly the same way as the invocation

enumerate

Copies into the specified array every active thread in this thread group. If recurse is true , this method recursively enumerates all subgroups of this thread group and references to every active thread in these subgroups are also included. If the array is too short to hold all the threads, the extra threads are silently ignored. An application might use the activeCount method to get an estimate of how big the array should be, however if the array is too short to hold all the threads, the extra threads are silently ignored. If it is critical to obtain every active thread in this thread group, the caller should verify that the returned int value is strictly less than the length of list . Due to the inherent race condition in this method, it is recommended that the method only be used for debugging and monitoring purposes.

activeGroupCount

Returns an estimate of the number of active groups in this thread group and its subgroups. Recursively iterates over all subgroups in this thread group. The value returned is only an estimate because the number of thread groups may change dynamically while this method traverses internal data structures. This method is intended primarily for debugging and monitoring purposes.

enumerate

Copies into the specified array references to every active subgroup in this thread group and its subgroups. An invocation of this method behaves in exactly the same way as the invocation

enumerate

Copies into the specified array references to every active subgroup in this thread group. If recurse is true , this method recursively enumerates all subgroups of this thread group and references to every active thread group in these subgroups are also included. An application might use the activeGroupCount method to get an estimate of how big the array should be, however if the array is too short to hold all the thread groups, the extra thread groups are silently ignored. If it is critical to obtain every active subgroup in this thread group, the caller should verify that the returned int value is strictly less than the length of list . Due to the inherent race condition in this method, it is recommended that the method only be used for debugging and monitoring purposes.

stop

Stops all threads in this thread group. First, the checkAccess method of this thread group is called with no arguments; this may result in a security exception. This method then calls the stop method on all the threads in this thread group and in all of its subgroups.

interrupt

Interrupts all threads in this thread group. First, the checkAccess method of this thread group is called with no arguments; this may result in a security exception. This method then calls the interrupt method on all the threads in this thread group and in all of its subgroups.

suspend

Suspends all threads in this thread group. First, the checkAccess method of this thread group is called with no arguments; this may result in a security exception. This method then calls the suspend method on all the threads in this thread group and in all of its subgroups.

resume

This method is used solely in conjunction with Thread.suspend and ThreadGroup.suspend , both of which have been deprecated, as they are inherently deadlock-prone. See Thread.suspend() for details.

Resumes all threads in this thread group. First, the checkAccess method of this thread group is called with no arguments; this may result in a security exception. This method then calls the resume method on all the threads in this thread group and in all of its sub groups.

destroy

The API and mechanism for destroying a ThreadGroup is inherently flawed. The ability to explicitly or automatically destroy a thread group will be removed in a future release.

Destroys this thread group and all of its subgroups. This thread group must be empty, indicating that all threads that had been in this thread group have since stopped. First, the checkAccess method of this thread group is called with no arguments; this may result in a security exception.

list

Prints information about this thread group to the standard output. This method is useful only for debugging.

uncaughtException

  • If this thread group has a parent thread group, the uncaughtException method of that parent is called with the same two arguments.
  • Otherwise, this method checks to see if there is a default uncaught exception handler installed, and if so, its uncaughtException method is called with the same two arguments.
  • Otherwise, this method determines if the Throwable argument is an instance of ThreadDeath . If so, nothing special is done. Otherwise, a message containing the thread’s name, as returned from the thread’s getName method, and a stack backtrace, using the Throwable ‘s printStackTrace method, is printed to the standard error stream.

Applications can override this method in subclasses of ThreadGroup to provide alternative handling of uncaught exceptions.

allowThreadSuspension

The definition of this call depends on suspend() , which is deprecated. Further, the behavior of this call was never specified.

toString

Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples. Other versions.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2023, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.

Источник

What are Thread Groups in Java?

@biziclop The question is asks for more specific issues and the question claims to understand it well, this question however is about explaining the basics which I myself don’t understand. Moreover don’t understand why none talks about it 😀

@biziclop I use ThreadGroups for different purposes, so I don’t consider them to be obsolete. They might be brain dead simple, but sometimes simple is all you need.

1 Answer 1

They are used as a Group of Threads. In a simple application you only need one, but in a more complex application server it makes sense to have one for each application.

why there is so little documentation about Thread Groups on the internet ?

I guess some assume it’s a pretty simple idea. Not sure what is missing about it.

Are they still used or they are some stale concept ?

I would image most developers never think about Thread Groups. But I think they are useful in certain situations. We have a library where we have a custom ThreadGroup for resetting thread affinity.

Can some one explain that are they what they are used for, if still used, and give an example.

Mostly in applications servers, each server has it’s own collection of threads and can be managed collectively. If you want to monitor or shutdown an application your need to know which threads the application started.

If you start off a thread in a ThreadGroup, every Thread it creates will also be in that thread group. Without this feature, you would have a hard time assigning threads to applications.

From @biziclop: How do you reliably enumerate threads in a group?

You can get the size of activeThreads and enumerate as the ThreadGroup locks on this (for better or worse)

Источник

Оцените статью