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

io.continual.metrics.impl.noop.NoopCounter Maven / Gradle / Ivy

There is a newer version: 0.3.24
Show newest version
package io.continual.metrics.impl.noop;

import io.continual.metrics.metricTypes.Counter;

/**
 * No-op counter is a placeholder used when metrics generators do not yet have a target.
 */
public class NoopCounter implements Counter
{
	@Override
	public void increment ( long amount )
	{
	}

	@Override
	public long getCount ()
	{
		return 0;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy