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 net.easyUI.common.util.html.parse.ParserThread.java

class ParserThread extends Thread {

    private final static Log logger = LogFactory.getLog(ParserThread.class);

    HTMLParser parser;

From source file org.globus.workspace.service.impls.async.WorkspaceThread.java

public class WorkspaceThread extends Thread {

    private static final Log logger = LogFactory.getLog(WorkspaceThread.class.getName());

    private final WorkspaceRequestQueue queue;
    private final WorkspaceThreadPool threadPool;

From source file pkg4.pkg0.ChildThread.java

public class ChildThread extends Thread {
    String url = "";
    String body = "";
    String Cookie = "";
    int state = 0;
    String host = "";

From source file paxos.VoteLeaderListener.java

/**
 *
 * @author tama
 */
public class VoteLeaderListener extends Thread {
    private volatile Thread t;

From source file Main.java

class MyThread extends Thread {
    public MyThread(String name) {
        super(name);
    }

    @Override

From source file com.jaspersoft.ireport.jasperserver.ws.http.IdleConnectionMonitorThread.java

public class IdleConnectionMonitorThread extends Thread {
    private final Set<HttpConnectionManager> connMgr = new HashSet<HttpConnectionManager>();
    private volatile boolean shutdown;

    public IdleConnectionMonitorThread() {
        super();

From source file HttpConnections.ThreadedRestConnFactory.java

/**
 *
 * @author fellippe.mendonca
 */
public class ThreadedRestConnFactory extends Thread {
    CloseableHttpClient httpclient;

From source file org.rifidi.designer.library.basemodels.antennafield.AntennaFieldThread.java

/**
 * Rifidi emulator RMI communication is slow so all communication is done in
 * this thread to prevent the main thread from blocking.
 * 
 * @author Jochen Mader - jochen@pramari.com - Feb 12, 2008
 * 

From source file org.wso2.carbon.registry.core.test.performance.Worker.java

public abstract class Worker extends Thread {

    protected int iterations;
    protected Registry registry;
    protected String threadName;
    protected String basePath;

From source file ChatServer.java

public class ChatServer extends Thread {
    private Socket conn;
    private int id;
    private final int FOUR_KB = 4096;
    private static StringBuilder log = new StringBuilder("Welcome to the server");
    private static DeviceUpdater updater;