com.custardsource.parfait.Counter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of parfait-core Show documentation
Show all versions of parfait-core Show documentation
Java performance monitoring framework, including PCP bridge
The newest version!
package com.custardsource.parfait;
public interface Counter {
public static final Counter NULL_COUNTER = new Counter(){
@Override
public void inc() {
}
@Override
public void inc(long increment) {
}
};
void inc();
void inc(long increment);
}