001package io.ebean.meta;
002
003/**
004 * Count metrics. For example L2 cache hits.
005 */
006public interface MetaCountMetric extends MetaMetric {
007
008  /**
009   * Return the total count.
010   */
011  long getCount();
012
013}