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

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

Introduction

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

Usage

From source file com.aef.TicketAckProcessorImpl.java

/**
 * This is the implementation of the TickAckProcessor that:
 * <ul>
 *    <li> Polls a redis queue
 *    <li> Updates the status of the database
 * </ul>

From source file co.cask.cdap.filetailer.AbstractWorker.java

/**
 * AbstractWorker for sink, tailer worker and metrics processor
 */
public abstract class AbstractWorker extends AbstractExecutionThreadService {

    private static final Logger LOG = LoggerFactory.getLogger(AbstractWorker.class);

From source file com.zaradai.kunzite.trader.services.md.channel.EmulatorChannel.java

public class EmulatorChannel extends AbstractExecutionThreadService implements MarketDataChannel {
    @Override
    protected void run() throws Exception {
        while (isRunning()) {

        }

From source file com.pva.QueryGeneratorImpl.java

/**
 * This is the implementation that encodes that:
 * <ul>
 * <li>Polls the database
 * <li>Creates a ticket
 * <li>Pushes to a redis queue

From source file com.dssmp.agent.tailing.AsyncPublisherService.java

/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the

From source file com.aef.TicketGeneratorImpl.java

/**
 * This is the implementation that encodes that:
 * <ul>
 *    <li> Polls the database
 *    <li> Creates a ticket
 *    <li> Pushes to a redis queue

From source file org.thriftzmq.TZMQClientPool.java

/**
 *
 * @author Vyacheslav Baranov
 */
public class TZMQClientPool extends AbstractExecutionThreadService {

From source file com.spotify.helios.servicescommon.InterruptingExecutionThreadService.java

public abstract class InterruptingExecutionThreadService extends AbstractExecutionThreadService {

    private final ExecutorService executorService;
    private final String name;

    protected InterruptingExecutionThreadService(final String name) {

From source file io.janusproject.services.network.AbstractNetworkingExecutionThreadService.java

/** This service has a priority to be launch/stop.
 *
 * @author $Author: sgalland$
 * @version $FullVersion$
 * @mavengroupid $GroupId$
 * @mavenartifactid $ArtifactId$

From source file com.adg.platform.remote.TicketProcessorImpl.java

   /**
    * @author sphetsarath
    * 
    */
   public class TicketProcessorImpl extends AbstractExecutionThreadService
           implements TicketProcessor<String, TicketBatch> {