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

com.hivemq.spi.metrics.annotations.Metered Maven / Gradle / Ivy

There is a newer version: 3.4.4
Show newest version
package com.hivemq.spi.metrics.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Methods annotated with this annotation are added to the HiveMQ {@link com.codahale.metrics.MetricRegistry}
 * automatically as Meters. The methods annotated with this Annotation get instrumented as Meters.
 *
 * @author Christoph Schäbel
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.ANNOTATION_TYPE})
public @interface Metered {

    /**
     * @return The name of this metric. When left empty the canonical name of the class and method will be used.
     */
    String name() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy