Package io.ebean.bean
Interface CallOrigin
-
- All Known Implementing Classes:
CallStack
public interface CallOrigin
A call origin for query execution profiling to collect graph use (for query tuning).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFullDescription()
Return the full description of the call origin.String
getOriginKey(int queryHash)
Compute and return an origin key based on the query hash.String
getTopElement()
Return the top element.
-
-
-
Method Detail
-
getTopElement
String getTopElement()
Return the top element. Typically the top stack element with class and line.
-
getFullDescription
String getFullDescription()
Return the full description of the call origin.
-
getOriginKey
String getOriginKey(int queryHash)
Compute and return an origin key based on the query hash.
-
-