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

io.ebean.meta.MetaQueryMetric Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebean.meta;

/**
 * Query execution metrics.
 */
public interface MetaQueryMetric extends MetaTimedMetric {

  /**
   * The type of entity or DTO bean.
   */
  Class type();

  /**
   * The label for the query (can be null).
   */
  String label();

  /**
   * The actual SQL of the query.
   */
  String sql();

  /**
   * Return the hash of the plan.
   */
  String hash();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy