Example usage for java.lang Thread subclass-usage

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

Introduction

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

Usage

From source file org.kurento.tutorial.helloworld.RepositoryManager.java

/**
 *
 * @author helder.rodrigues
 */
public class RepositoryManager extends Thread {
    public static final String ANSI_RED = "\u001B[31m";

From source file org.accelio.jxio.tests.benchmarks.ServerPortalWorker.java

public class ServerPortalWorker extends Thread implements Comparable<ServerPortalWorker>, Worker {

    private final ServerPortal sp;
    private final EventQueueHandler eqh;
    private final MsgPool pool;
    private final int portal_index;

From source file charva.awt.PlaybackThread.java

/**
 * This class reads a scriptfile line by line, parses each line
 * into a time-interval and a gesture-specifier (either KEY or MOUSE), and
 * fires the specified keystroke (or mouse-click) after the specified delay.
 */
public class PlaybackThread extends Thread {

From source file com.adito.server.StatsLogger.java

public class StatsLogger extends Thread {
    final static Log log = LogFactory.getLog(StatsLogger.class);

    private Server server;
    private int update;

From source file groovesquid.GetAdsThread.java

/**
 *
 * @author Maino
 */
public class GetAdsThread extends Thread {
    private final static Logger log = Logger.getLogger(Main.class.getName());

From source file de.thischwa.pmcms.view.renderer.ExportThreadPoolController.java

/**
 * Initializes and feed the thread pool and handle the individual export threads. Just 'maxRunningThreads' are running simultaneous. It provides methods for
 * status information and exception handling.
 * 
 * @author Thilo Schwarz
 */

From source file org.apache.hadoop.chukwa.util.PidFile.java

public class PidFile extends Thread {

    String name;
    private static Log log = LogFactory.getLog(PidFile.class);
    private static FileLock lock = null;
    private static FileOutputStream pidFileOutput = null;

From source file com.cura.Terminal.Terminal.java

public class Terminal extends Thread {

    private JSch jsch;
    private Session session;
    private Channel channel;

From source file org.sakaiproject.tool.assessment.ui.listener.author.RemovePublishedAssessmentThread.java

/**
 * <p>Title: Samigo</p>
 * <p>Description: Sakai Assessment Manager</p>
 * @author Qingru Zhang
 * @version $Id$
 */

From source file org.wso2.andes.kernel.MessageExpirationWorker.java

/**
 * This thread will keep looking for expired messages within the broker and remove them.
 */
public class MessageExpirationWorker extends Thread {

    private static Log log = LogFactory.getLog(MessageExpirationWorker.class);