Interface ProfiledProcessState
-
- All Known Implementing Classes:
ProcessProfilerImpl
public interface ProfiledProcessState
ProfiledProcessState
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<ProfiledThreadState>
getProfiledThreadStates()
Obtains theProfiledThreadState
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.
-
getProfiledThreadStates
java.util.List<ProfiledThreadState> getProfiledThreadStates()
Obtains theProfiledThreadState
instances.- Returns:
ProfiledThreadState
instances.
-
-