Interface ProfiledThreadState
-
- All Known Implementing Classes:
ThreadProfilerImpl
public interface ProfiledThreadState
ProfiledThreadState
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<ProfiledManagedFunction>
getProfiledManagedFunctions()
Obtains theProfiledManagedFunction
instances.long
getStartTimestampMilliseconds()
Obtains the start time stamp.long
getStartTimestampNanoseconds()
Obtains the start time stamp.
-
-
-
Method Detail
-
getStartTimestampMilliseconds
long getStartTimestampMilliseconds()
Obtains the start time stamp.- Returns:
- Start time stamp in milliseconds.
-
getStartTimestampNanoseconds
long getStartTimestampNanoseconds()
Obtains the start time stamp.- Returns:
- Start time stamp in nanoseconds.
-
getProfiledManagedFunctions
java.util.List<ProfiledManagedFunction> getProfiledManagedFunctions()
Obtains theProfiledManagedFunction
instances.- Returns:
ProfiledManagedFunction
instances.
-
-