Example usage for java.lang Runnable interface-usage

List of usage examples for java.lang Runnable interface-usage

Introduction

In this page you can find the example usage for java.lang Runnable interface-usage.

Usage

From source file Main.java

class JobRunnable implements Runnable {
    final int _lineIdx;
    final Thread t;

    public JobRunnable(int lineIdx, Thread threadToWaitForBeforePrinting) {
        _lineIdx = lineIdx;

From source file CONTROLLER.TProcessamentoCategoria.java

/**
 *
 * @author dinho
 */
public class TProcessamentoCategoria implements Runnable {

From source file FlagComm.java

class FlagSend implements Runnable {
    volatile int theValue;

    volatile boolean isValid;

    public void run() {

From source file sk.styk.martin.bakalarka.downloaders.DownloadTask.java

/**
 * Download task for one file. Can e executed concurrently.
 * Simply downloads content on specified URLs which should end with *.apk
 *
 * @author Martin Styk
 */

From source file com.biomeris.i2b2.export.ws.CleanerRunnable.java

class CleanerRunnable implements Runnable {

    private WSessionManager sessionManager;
    private static Log log = LogFactory.getLog(CleanerRunnable.class);

    CleanerRunnable(WSessionManager sessionManager) {

From source file com.dc.gameserver.extComponents.Kit.util.LoopRunnable.java

/**
 * Runnable?,?Runnable??.??shutdown(),pause(),resume()
 * 
 * 
 * 
 * <br />

From source file maspack.fileutil.FileTransferMonitor.java

/**
 * Interface for class responsible for monitoring one or more file transfers by
 * examining the destination file. It is associated with a set of
 * {@link FileTransferListener} objects that listen to transfer events fired by
 * this monitor.
 * 

From source file CONTROLLER.TProcessamentoRodada.java

/**
 *
 * @author dinho
 */
public class TProcessamentoRodada implements Runnable {
    private ArrayList<Rodada> rodadas = new ArrayList<>();

From source file Main.java

class ExecutableChild implements Runnable {
    int prIndex;
    String executable;

    public ExecutableChild(int k, String cmd) {
        prIndex = k;

From source file org.jkcsoft.java.util.HeartbeatLogger.java

public class HeartbeatLogger implements Runnable {

    //-------------------------------------------------------------------------
    // Static members
    //-------------------------------------------------------------------------
    private static List<Thread> threads = new Vector<Thread>();