Example usage for com.google.common.util.concurrent AbstractService subclass-usage

List of usage examples for com.google.common.util.concurrent AbstractService subclass-usage

Introduction

In this page you can find the example usage for com.google.common.util.concurrent AbstractService subclass-usage.

Usage

From source file co.cask.cdap.internal.app.runtime.artifact.SystemArtifactLoader.java

/**
 * Thread that scans the local filesystem for system artifacts and adds them to the artifact repository if they
 * are not already there.
 */
public final class SystemArtifactLoader extends AbstractService {
    private final Service serviceDelegate;

From source file flipkart.mongo.replicator.cluster.ClusterReplicator.java

/**
 * Created by pradeep on 29/10/14.
 */
public class ClusterReplicator extends AbstractService {

    private ServiceManager replicasReplicatorServiceManager;

From source file com.zxy.commons.lang.server.AbstractStartServer.java

/**
 * AbstractStartServer
 * 
 * <p>
 * <a href="AbstractStartServer.java"><i>View Source</i></a>
 * 

From source file com.friz.update.UpdateService.java

/**
 * Created by Kyle Fricilone on 9/20/2015.
 */
public class UpdateService extends AbstractService implements Runnable {

    /**

From source file io.pravega.controller.server.retention.StreamCutService.java

@Slf4j
public class StreamCutService extends AbstractService implements BucketOwnershipListener {
    private final int bucketCount;
    private final String processId;
    private final ConcurrentSet<StreamCutBucketService> buckets;
    private final StreamMetadataStore streamMetadataStore;

From source file org.apache.hadoop.hbase.replication.BaseReplicationEndpoint.java

/**
 * A Base implementation for {@link ReplicationEndpoint}s. Users should consider extending this
 * class rather than implementing {@link ReplicationEndpoint} directly for better backwards
 * compatibility.
 */
@InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience.REPLICATION)

From source file io.pravega.common.concurrent.AbstractThreadPoolService.java

/**
 * Base Service that runs asynchronously using a thread pool.
 */
@Slf4j
public abstract class AbstractThreadPoolService extends AbstractService implements AutoCloseable {
    //region Members

From source file org.midonet.midolman.services.SelectLoopService.java

/**
 * Service implementation that will initialize the SelectLoop select thread.
 */
public class SelectLoopService extends AbstractService {

    private static final Logger log = LoggerFactory.getLogger(SelectLoopService.class);

From source file com.friz.audio.AudioService.java

/**
 * Created by Kyle Fricilone on 9/20/2015.
 */
public class AudioService extends AbstractService implements Runnable {

    /**

From source file co.cask.cdap.common.service.RetryOnStartFailureService.java

/**
 * A Guava {@link Service} that wrap around another {@link Service} such that, if the wrapped service failed
 * to start, it will get restarted based on the {@link RetryStrategy}.
 */
public class RetryOnStartFailureService extends AbstractService {