case class ThreadStackTrace(threadId: Long, threadName: String, threadState: State, stackTrace: StackTrace, blockedByThreadId: Option[Long], blockedByLock: String, holdingLocks: Seq[String], synchronizers: Seq[String], monitors: Seq[String], lockName: Option[String], lockOwnerName: Option[String], suspended: Boolean, inNative: Boolean, isDaemon: Boolean, priority: Int) extends Product with Serializable
- Source
- api.scala
- Alphabetic
- By Inheritance
- ThreadStackTrace
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new ThreadStackTrace(threadId: Long, threadName: String, threadState: State, stackTrace: StackTrace, blockedByThreadId: Option[Long], blockedByLock: String, holdingLocks: Seq[String], synchronizers: Seq[String], monitors: Seq[String], lockName: Option[String], lockOwnerName: Option[String], suspended: Boolean, inNative: Boolean, isDaemon: Boolean, priority: Int)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val blockedByLock: String
- val blockedByThreadId: Option[Long]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- val inNative: Boolean
- val isDaemon: Boolean
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val lockName: Option[String]
- val lockOwnerName: Option[String]
- val monitors: Seq[String]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- val priority: Int
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val stackTrace: StackTrace
- val suspended: Boolean
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val synchronizers: Seq[String]
- val threadId: Long
- val threadName: String
- val threadState: State
- def toString(): String
Returns a string representation of this thread stack trace w.r.t java.lang.management.ThreadInfo(JDK 8)'s toString.
Returns a string representation of this thread stack trace w.r.t java.lang.management.ThreadInfo(JDK 8)'s toString.
TODO(SPARK-44896): Also considering adding information os_prio, cpu, elapsed, tid, nid, etc., from the jstack tool
- Definition Classes
- ThreadStackTrace → AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])