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 c5db.regionserver.RegionServerService.java

/**
 * The service handler for the RegionServer class. Responsible for handling the internal lifecycle
 * and attaching the netty infrastructure to the region server.
 */
public class RegionServerService extends AbstractService implements RegionServerModule {
    private static final Logger LOG = LoggerFactory.getLogger(RegionServerService.class);

From source file org.robotninjas.protobuf.netty.server.RpcServer.java

public class RpcServer extends AbstractService {

    private final ServerBootstrap bootstrap;
    private final ChannelGroup allChannels;
    private final ServerHandler handler;
    private final SocketAddress address;

From source file com.aipo.social.opensocial.spi.AipoPersonService.java

/**
 *
 */
public class AipoPersonService extends AbstractService implements PersonService {

    private final TurbineUserDbService turbineUserDbService;

From source file c5db.control.ControlService.java

/**
 * Starts a HTTP service to listen for and respond to control messages.
 */
public class ControlService extends AbstractService implements ControlModule {
    private static final Logger LOG = LoggerFactory.getLogger(ControlService.class);

From source file c5db.webadmin.WebAdminService.java

/**
 *
 */
public class WebAdminService extends AbstractService implements WebAdminModule {
    private static final Logger LOG = LoggerFactory.getLogger(WebAdminService.class);

From source file org.apache.twill.internal.zookeeper.LeaderElection.java

/**
 * Performs leader election as specified in
 * <a href="http://zookeeper.apache.org/doc/trunk/recipes.html#sc_leaderElection">Zookeeper recipes</a>.
 *
 * It will enter the leader election process when {@link #start()} is called and leave the process when
 * {@link #stop()} is invoked.

From source file org.midonet.cluster.cache.ObjectCache.java

/**
 * Implements a cache for the Network State Database (NSDB) objects. Upon start,
 * an instance of this class exposes an {@link Observable} that when subscribed
 * to emits notifications with the current NSDB objects.
 */
@SuppressWarnings("unused")

From source file org.icgc.dcc.submission.sftp.SftpServerService.java

/**
 * Service abstraction to the SFTP sub-system.
 */
@Slf4j
@RequiredArgsConstructor(onConstructor = @_(@Inject))
public class SftpServerService extends AbstractService {

From source file com.google.cloud.pubsub.AbstractSubscriberConnection.java

/**
 * Abstract base implementation class of a subscriber connection in charge of receiving subscription
 * messages.
 */
abstract class AbstractSubscriberConnection extends AbstractService {
    private static final Logger logger = LoggerFactory.getLogger(AbstractSubscriberConnection.class);

From source file co.cask.cdap.common.zookeeper.coordination.ResourceCoordinatorClient.java

/**
 * This class helps client to participate in resource coordination process.
 */
public final class ResourceCoordinatorClient extends AbstractService {

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