img
. . . . . . .
getMaxPriority setMaxPriority
public final void getMaxPriority()
public final void setMaxPriority(int newMaxPrio)throws
SecurityException, IllegalArgumentException
This gets/sets the maximum priority allowed for any thread in this group.
Reference:
Chapter 10.
isDaemon setDaemon
public final void isDaemon()
public final void setDaemon(boolean daemon) throws
SecurityException
This gets/sets this group to be a daemon.
Reference:
Chapter 10.
threadsCount
public int threadsCount()
This counts the threads in this group.
Reference:
Chapter 10.
allThreadsCount
public int allThreadsCount()
This counts the threads in this group and subgroups.
Reference:
Chapter 10.
groupsCount
public int groupsCount()
This counts the groups in this group.
Reference:
Chapter 10.
allGroupsCount
public int allGroupsCount()
This counts the groups in this group and subgroups.
Reference:
Chapter 10.
threads
public Thread[] threads()
This returns an array of all the threads in this group.
Reference:
Chapter 10.
Search WWH :
Custom Search
Previous Page
Multithreaded Programming with JAVA - Topic Index
Next Page
Multithreaded Programming with JAVA - Bookmarks
Home