Interface OutOfLineAllocationEvent
- All Known Implementing Classes:
OutOfLineAllocationEventImpl
public interface OutOfLineAllocationEvent
-
Method Summary
Modifier and TypeMethodDescriptionlongReturns the size of this allocation, in bytes.Returns a comma separated call stack for the object allocation event.longReturns the class address for this allocation event.Returns the class name for this allocation event.longReturns the time, in milliseconds since epoch, when this allocation occurred.
-
Method Details
-
getCallStack
String getCallStack()Returns a comma separated call stack for the object allocation event.- Returns:
- a String of comma separated methods.
-
getEventTime
long getEventTime()Returns the time, in milliseconds since epoch, when this allocation occurred.- Returns:
- the time of the allocation.
-
getAllocationSize
long getAllocationSize()Returns the size of this allocation, in bytes.- Returns:
- the size in bytes.
-
getClassAddress
long getClassAddress()Returns the class address for this allocation event.- Returns:
- the class address.
-
getClassName
String getClassName()Returns the class name for this allocation event.- Returns:
- the class name.
-