Example usage for java.util.concurrent Callable interface-usage

List of usage examples for java.util.concurrent Callable interface-usage

Introduction

In this page you can find the example usage for java.util.concurrent Callable interface-usage.

Usage

From source file com.zinnia.nectar.regression.hadoop.primitive.jobs.SigmaSqJob.java

public class SigmaSqJob implements Callable<Double> {
    private Job job;
    private FileSystem fs;
    private ControlledJob controlledJob;
    Log log = LogFactory.getLog(SigmaSqJob.class);

From source file com.flyingspaniel.nava.request.Request.java

/**
 * @author Morgan Conrad
 * @see <a href="http://opensource.org/licenses/MIT">This software is released under the MIT License</a>
 * @since Copyright (c) 2013 by Morgan Conrad
 */
public class Request extends EmittingCallbackFn<String, Response> implements Callable<Response> {

From source file org.mobicents.media.server.rtsp.action.DescribeAction.java

/**
 * 
 * @author amit bhayani
 * 
 */
public class DescribeAction implements Callable<FullHttpResponse> {

From source file com.zinnia.nectar.regression.hadoop.primitive.jobs.MeanJob.java

public class MeanJob implements Callable<Double> {
    private Job job;
    private FileSystem fs;
    private ControlledJob controlledJob;
    Log log = LogFactory.getLog(MeanJob.class);

From source file org.dishevelled.bio.tools.EnsemblVariantTableToVcf.java

/**
 * Convert Ensembl variant table to VCF format.
 *
 * @author  Michael Heuer
 */
public class EnsemblVariantTableToVcf implements Callable<Integer> {

From source file org.rhq.core.pc.content.CreateContentRunner.java

/**
* Runnable to allow threaded creation of a content.
*
* @author Jason Dobies
*/
public class CreateContentRunner implements Runnable, Callable<DeployPackagesResponse> {

From source file cross.datastructures.workflow.IWorkflow.java

/**
 * Workflow models a sequence of produced IWorkflowResults, which usually are
 * files created by {@link cross.datastructures.workflow.IWorkflowElement}
 * objects.
 *
 * @author Nils Hoffmann

From source file org.sonar.server.db.migrations.v36.ViolationConverter.java

class ViolationConverter implements Callable<Object> {

    private static final long ONE_YEAR = 365L * 24 * 60 * 60 * 1000;
    private static final Date ONE_YEAR_AGO = new Date(System.currentTimeMillis() - ONE_YEAR);

    private static final String PROJECT_ID = "projectId";

From source file dk.dbc.opensearch.datadock.DatadockThread.java

/**
 * \ingroup datadock \brief The public interface for the OpenSearch
 * DataDockService DataDock, together with DataDockPool, is the primary
 * accesspoint for the delivery of material to be saved in the Fedora repository
 * and processed by lucene. The DataDock interface allows clients to submit data
 * that represents a textual material to be stored in a Fedora repository and

From source file com.zinnia.nectar.regression.hadoop.primitive.jobs.SigmaJob.java

public class SigmaJob implements Callable<Double> {
    private Job job;
    private ControlledJob controlledJob;
    private FileSystem fs;
    Log log = LogFactory.getLog(SigmaJob.class);