ManagerStatus

@Serializable
data class ManagerStatus(val leader: Boolean? = false, val reachability: Reachability? = null, val addr: String? = null)

ManagerStatus represents the status of a manager. It provides the current status of a node's manager component, if the node is a manager.

Parameters

leader
reachability
addr

The IP address and port at which the manager is reachable.

Constructors

Link copied to clipboard
constructor(leader: Boolean? = false, reachability: Reachability? = null, addr: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "Addr")
val addr: String?
Link copied to clipboard
@SerialName(value = "Leader")
val leader: Boolean?
Link copied to clipboard
@SerialName(value = "Reachability")
val reachability: Reachability?