Packages

c

org.apache.spark.status.api.v1

ThreadStackTrace

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
Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ThreadStackTrace
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. 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

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val blockedByLock: String
  6. val blockedByThreadId: Option[Long]
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  10. val inNative: Boolean
  11. val isDaemon: Boolean
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. val lockName: Option[String]
  14. val lockOwnerName: Option[String]
  15. val monitors: Seq[String]
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  19. val priority: Int
  20. def productElementNames: Iterator[String]
    Definition Classes
    Product
  21. val stackTrace: StackTrace
  22. val suspended: Boolean
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. val synchronizers: Seq[String]
  25. val threadId: Long
  26. val threadName: String
  27. val threadState: State
  28. 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
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

  2. val holdingLocks: Seq[String]
    Annotations
    @deprecated
    Deprecated

    (Since version 4.0.0) using synchronizers and monitors instead

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped