All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.metrics.MetricCollector Maven / Gradle / Ivy

Go to download

The AWS SDK for Java Mobile - Core module holds the classes that is used by the individual service clients to interact with Amazon Web Services. Users need to depend on aws-java-sdk artifact for accessing individual client classes.

The newest version!
/*
 * Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 *
 *  http://aws.amazon.com/apache2.0
 *
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */

package com.amazonaws.metrics;

/**
 * Metric Collector SPI. This is a class instead of interface so in case of
 * adding new methods in the future we can do that safetly without breaking any
 * existing clients that implements this SPI.
 */
public abstract class MetricCollector {
    /**
     * Can be used to serve as a factory for the request metric collector.
     */
    public static interface Factory {

        /**
         * @return an instance of the collector; or null if if failed to create
         * one.
         */
        public MetricCollector getInstance();
    }

    /**
     * Starts the request metric collector.
     *
     * @return true if the collector is successfully started; false otherwise.
     */
    public abstract boolean start();

    /**
     * Stops the request metric collector.
     *
     * @return true if the collector is successfully stopped; false if the
     *         collector is not running and therefore the call has no effect.
     */
    public abstract boolean stop();

    /** @return true if this collector is enabled; false otherwise. */
    public abstract boolean isEnabled();

    /** @return the request metric collector. */
    public abstract RequestMetricCollector getRequestMetricCollector();

    /** @return the service metric collector. */
    public abstract ServiceMetricCollector getServiceMetricCollector();

    /** A convenient instance of a no-op request metric collector. */
    public static final MetricCollector NONE = new MetricCollector() {
        @Override
        public boolean start() {
            return true;
        }

        @Override
        public boolean stop() {
            return true;
        }

        /** Always returns false. */
        @Override
        public boolean isEnabled() {
            return false;
        }

        @Override
        public RequestMetricCollector getRequestMetricCollector() {
            return RequestMetricCollector.NONE;
        }

        @Override
        public ServiceMetricCollector getServiceMetricCollector() {
            return ServiceMetricCollector.NONE;
        }
    };
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy