-
@JsonClass(generateAdapter = true) public final class ThreadInfoRepresents thread information at a given point in time.
-
-
Constructor Summary
Constructors Constructor Description ThreadInfo(Long threadId, Thread.State state, String name, Integer priority, List<String> lines, Integer frameCount)
-
Method Summary
Modifier and Type Method Description final LonggetThreadId()The thread ID final Thread.StategetState()Thread state when the ANR is happening Thread.State final StringgetName()The name of the thread. final IntegergetPriority()The priority of the thread final List<String>getLines()String representation of each line of the stack trace. final IntegergetFrameCount()The total number of frames in the stack before truncation -
-
Method Detail
-
getThreadId
final Long getThreadId()
The thread ID
-
getState
final Thread.State getState()
Thread state when the ANR is happening Thread.State
-
getPriority
final Integer getPriority()
The priority of the thread
-
getFrameCount
final Integer getFrameCount()
The total number of frames in the stack before truncation
-
-
-
-