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

io.ebean.bean.CallOrigin Maven / Gradle / Ivy

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

/**
 * A call origin for query execution profiling to collect graph use (for query tuning).
 */
public interface CallOrigin {

  /**
   * Return the top element. Typically the top stack element with class and line.
   */
  String top();

  /**
   * Return the full description of the call origin.
   */
  String description();

  /**
   * Compute and return an origin key based on the query hash.
   */
  String key(int queryHash);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy