LiveEntity is the contract of a live entity in Spark that…FIXME
package org.apache.spark.status
abstract class LiveEntity {
// only required methods that have no implementation
// the others follow
protected def doUpdate(): Any
}|
Note
|
LiveEntity is a private[spark] contract.
|
| Method | Description |
|---|---|
|
Used exclusivey when |
LiveEntity tracks the last write time (in lastWriteTime internal registry).
write(store: ElementTrackingStore, now: Long, checkTriggers: Boolean = false): UnitIn the end, write records the time in the lastWriteTime.
|
Note
|
|