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

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

Introduction

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

Usage

From source file DelayedJob.java

class DelayedJob implements Delayed {
    private Instant scheduledTime;
    String jobName;

    public DelayedJob(String jobName, Instant scheduledTime) {
        this.scheduledTime = scheduledTime;

From source file org.apache.hadoop.hbase.master.RegionServerOperation.java

abstract class RegionServerOperation implements Delayed {
    protected static final Log LOG = LogFactory.getLog(RegionServerOperation.class.getName());

    public static enum RegionServerOperationResult {
        /** this operation is completed successfully. */
        OPERATION_SUCCEEDED,

From source file com.jms.notify.core.NotifyTask.java

/**
 * <b>:
 * </b>
 * @author xianchaoye
 * 
 */

From source file com.alibaba.napoli.metamorphosis.client.consumer.FetchRequest.java

/**
 * ?
 * 
 * @author boyan
 * @Date 2011-4-25
 * 

From source file com.roncoo.pay.app.notify.core.NotifyTask.java

/**
 * <b>:
 * </b>
 * @author  Peter
 * <a href="http://www.roncoo.com">(www.roncoo.com)</a>
 */

From source file org.apache.falcon.notification.service.request.DataNotificationRequest.java

/**
 * Request intended for {@link import org.apache.falcon.notification.service.impl.DataAvailabilityService}
 * for data notifications.
 * The setter methods of the class support chaining similar to a builder class.
 */
public class DataNotificationRequest extends NotificationRequest implements Delayed {

From source file org.apache.hadoop.mapred.gridmix.GridmixJob.java

/**
 * Synthetic job generated from a trace description.
 */
abstract class GridmixJob implements Callable<Job>, Delayed {

    public static final String JOBNAME = "GRIDMIX";