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

com.orientechnologies.agent.profiler.metrics.OCounter Maven / Gradle / Ivy

The newest version!
package com.orientechnologies.agent.profiler.metrics;

/** Created by Enrico Risa on 09/07/2018. */
public interface OCounter extends OMetric {

  default void inc() {}

  default void inc(long n) {}

  default void dec() {}

  default void dec(long n) {}

  default long getCount() {
    return 0;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy