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

src.org.github.jamm.Unmetered Maven / Gradle / Ivy

Go to download

Jamm provides MemoryMeter, a java agent to measure actual object memory use including JVM overhead.

There is a newer version: 0.4.0
Show newest version
package org.github.jamm;

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

/**
 * Indicates that a specified field or type should not be measured or counted by MemoryMeter.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.FIELD})
public @interface Unmetered {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy