com.codahale.metrics.jdbi3.strategies.StatementNameStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metrics-jdbi3 Show documentation
Show all versions of metrics-jdbi3 Show documentation
Provides instrumentation of Jdbi3 data access objects
package com.codahale.metrics.jdbi3.strategies;
import org.jdbi.v3.core.statement.StatementContext;
/**
* Interface for strategies to statement contexts to metric names.
*/
@FunctionalInterface
public interface StatementNameStrategy {
String getStatementName(StatementContext statementContext);
}