List of usage examples for java.lang Runnable interface-usage
From source file Main.java
class Receiver implements Runnable { CyclicBarrier barrier; public Receiver(CyclicBarrier barrier) { this.barrier = barrier; }
From source file Transcriber.java
/** * * @author tom */ public class Transcriber implements Runnable { String language = "en-US";
From source file com.qaant.threadModels.TBlackScholes.java
/** * * @author pseoane Modelo OK, chequeado valores aca: http://www.math.drexel.edu/~pg/fin/VanillaCalculator.html */ public class TBlackScholes extends TGenericModel implements Runnable {
From source file Main.java
class Worker implements Runnable { private final String line; public Worker(String line) { this.line = line; }
From source file CONTROLLER.TProcessamentoJogo.java
/** * * @author dinho */ public class TProcessamentoJogo implements Runnable { private ArrayList<Jogo> jogos = new ArrayList<>();
From source file Main.java
class Test implements Runnable { CountDownLatch latch; public Test(CountDownLatch latch) { this.latch = latch; }
From source file com.utdallas.s3lab.smvhunter.monkey.DeviceOfflineMonitor.java
/**
* Copyright (C) 2013 David Sounthiraraj
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
From source file com.lfv.lanzius.application.EventSwitchController.java
/**
* <p>
* <p>
*
* @author <a href="mailto:naber@nlr.nl.com">Bastiaan Naber</a>
* @version Yada 1.0
From source file com.sourav.apps.PiMessageFetcher.java
/** * * @author sourdatt */ public class PiMessageFetcher implements Runnable { private Thread runner;
From source file de.ailis.oneinstance.OneInstanceClient.java
/** * This thread handles the communication with a single client. * * @author Klaus Reimer (k@ailis.de) */ final class OneInstanceClient implements Runnable {