UIRoot — Contract for Root Contrainers of Application UI Information
UIRoot
is the contract of the root containers for application UI information.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
package org.apache.spark.status.api.v1 trait UIRoot { // only required methods that have no implementation // the others follow def withSparkUI[T](appId: String, attemptId: Option[String])(fn: SparkUI => T): T def getApplicationInfoList: Iterator[ApplicationInfo] def getApplicationInfo(appId: String): Option[ApplicationInfo] def securityManager: SecurityManager } |
Note
|
UIRoot is a private[spark] contract.
|
Method | Description |
---|---|
|
Used when…FIXME |
|
Used when…FIXME |
|
Used when…FIXME |
|
Used exclusively when |