Example usage for com.google.common.util.concurrent Service interface-usage

List of usage examples for com.google.common.util.concurrent Service interface-usage

Introduction

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

Usage

From source file co.cask.cdap.security.authorization.AuthorizationEnforcementService.java

/**
 * An {@link AuthorizationEnforcer} used to enforce authorization policies in programs. If caching is enabled using
 * {@link Constants.Security.Authorization#CACHE_ENABLED}, authorization policies are cached locally.
 * A thread refreshes the cached policies periodically.
 */
public interface AuthorizationEnforcementService extends Service, AuthorizationEnforcer {

From source file nebula.plugin.metrics.dispatcher.MetricsDispatcher.java

/**
 * @author Danny Thomas
 */
public interface MetricsDispatcher extends Service {
    void started(Project project);

From source file co.cask.tephra.persist.TransactionStateStorage.java

/**
 * Defines the common contract for persisting transaction state changes.
 */
public interface TransactionStateStorage extends Service {

    /**

From source file gobblin.runtime.TaskStateTracker.java

/**
 * An interface for classes that track {@link TaskState}s.
 *
 * @author Yinan Li
 */
public interface TaskStateTracker extends Service {

From source file com.zaradai.kunzite.optimizer.OptimizerService.java

public interface OptimizerService extends Service {
    OptimizeController open(DataSetContext context);

    OptimizeController create(String name, String description, Class<? extends Evaluator> evaluator,
            InputRowSchema schema);
}

From source file com.torodb.mongodb.repl.OplogApplierService.java

public interface OplogApplierService extends Service {

    public static interface Callback {

        void waitUntilStartPermision();

From source file org.apache.gobblin.runtime.TaskStateTracker.java

/**
 * An interface for classes that track {@link TaskState}s.
 *
 * @author Yinan Li
 */
public interface TaskStateTracker extends Service {

From source file io.janusproject.services.DependentService.java

/**
 * This service is dependent on other services.
 *
 * @author $Author: sgalland$
 * @version $FullVersion$
 * @mavengroupid $GroupId$

From source file com.zaradai.kunzite.trader.services.orders.OrderGatewayService.java

public interface OrderGatewayService extends Service {
    void build(OrderGatewayConfiguration configuration) throws ConfigException;

    void onOrderSend(OrderSendEvent event);

    void onOrderStatus(OrderStatusEvent event);

From source file com.continuuity.weave.internal.yarn.YarnAppClient.java

/**
 * Interface for launching Yarn application from client.
 */
public interface YarnAppClient extends Service {

    /**