Example usage for java.lang ThreadGroup subclass-usage

List of usage examples for java.lang ThreadGroup subclass-usage

Introduction

In this page you can find the example usage for java.lang ThreadGroup subclass-usage.

Usage

From source file org.semispace.googled.GuiThreadGroup.java

public class GuiThreadGroup extends ThreadGroup {
    private static Log log = LogFactory.getLog(GuiThreadGroup.class);

    public GuiThreadGroup() {
        super("ExceptionGroup");
    }

From source file org.hyperic.util.thread.LoggingThreadGroup.java

/**
 * Create your threads using this ThreadGroup to have uncaught exceptions
 * logged via Log4j 
 */
public class LoggingThreadGroup extends ThreadGroup {
    private final Log _log = LogFactory.getLog(LoggingThreadGroup.class);

From source file com.chinamobile.bcbsp.comm.RPCSendSlavePool.java

/**
 * The RPC send thread pool, manage threads.
 */
public class RPCSendSlavePool extends ThreadGroup {
    /** class logger. */
    private static final Log LOG = LogFactory.getLog(RPCSendSlavePool.class);

From source file com.chinamobile.bcbsp.comm.ProducerPool.java

/**
 * ProducerTools Pool.
 * @author Bai Qiushi
 * @version 1.0 2012-3-29
 */
public class ProducerPool extends ThreadGroup {

From source file Main.java

class MyThreadGroup extends ThreadGroup {

    MyThreadGroup(String n) {
        super(n);
    }

From source file org.archive.crawler.framework.ToePool.java

/**
 * A collection of ToeThreads. The class manages the ToeThreads currently
 * running. It offers methods for increasing and decreasing their 
 * number, keeping track of their state and (not necessarily safely)
 * killing hung threads.
 *

From source file ThreadPoolTest.java

/**
 * A thread pool is a group of a limited number of threads that are used to
 * execute tasks.
 */

class ThreadPool extends ThreadGroup {

From source file com.projity.job.JobQueue.java

/**
 *
 */
public class JobQueue extends ThreadGroup {
    public final static int MAX_PROGRESS = 10000;
    protected boolean documentBased = false;

From source file SoundManagerTest.java

/**
 * A thread pool is a group of a limited number of threads that are used to
 * execute tasks.
 */

class ThreadPool extends ThreadGroup {