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 org.hobbit.core.components.dummy.DummyComponentExecutor.java

@Ignore
public class DummyComponentExecutor implements Runnable {

    private static final Logger LOGGER = LoggerFactory.getLogger(DummyComponentExecutor.class);

    protected Component component;

From source file org.vaadin.spring.samples.sidebar.ExecutionOperation1.java

/**
 * Example operation that shows up under the Execution section in the side bar.
 *
 * @author Petter Holmstrm (petter@vaadin.com)
 */
@SideBarItem(sectionId = Sections.EXECUTION, caption = "Operation 1")

From source file org.vaadin.spring.samples.sidebar.ExecutionOperation2.java

/**
 * Example operation that shows up under the Execution section in the side bar.
 *
 * @author Petter Holmstrm (petter@vaadin.com)
 */
@SideBarItem(sectionId = Sections.EXECUTION, caption = "Operation 2")

From source file org.vaadin.spring.samples.sidebar.ExecutionOperation3.java

/**
 * Example operation that shows up under the Execution section in the side bar.
 *
 * @author Petter Holmstrm (petter@vaadin.com)
 */
@SideBarItem(sectionId = Sections.EXECUTION, caption = "Operation 3")

From source file com.l2jfree.util.concurrent.ExecuteWrapper.java

/**
 * @author NB4L1
 */
public class ExecuteWrapper implements Runnable {
    private static final Log _log = LogFactory.getLog(ExecuteWrapper.class);

From source file org.openmrs.module.dataimporttool.api.DataImportToolService.java

/**
 * This service exposes module's core functionality. It is a Spring managed bean which is configured in moduleApplicationContext.xml.
 * <p>
 * It can be accessed only via Context:<br>
 * <code>
 * Context.getService(DataImportToolService.class).someMethod();

From source file org.nuxeo.ecm.platform.pictures.tiles.service.GCTask.java

/**
 * Task for GC dedicated Thread
 *
 * @author tiry
 */
public class GCTask implements Runnable {

From source file A.java

class Deadlock implements Runnable {
    A a = new A();

    B b = new B();

    Deadlock() {

From source file org.wso2.carbon.integration.framework.utils.InputStreamHandler.java

/**
 * This class is used to consume the input streams and error streams of the
 * processes created by Runtime.exec() to avoid possible deadlock situations due
 * to unconsumed input streams.
 * An instance of this class will be created for input stream and output stream
 * of each process and it will log those streams to the standard output.

From source file io.hops.common.IDsMonitor.java

public class IDsMonitor implements Runnable {

    private static final Log LOG = LogFactory.getLog(IDsMonitor.class);
    private static IDsMonitor instance = null;
    private Thread th = null;