IviServiceHostStatus

data class IviServiceHostStatus(    val iviInstanceId: IviInstanceId?,     val started: Boolean,     val serviceStatus: Map<IviServiceId, IviServiceStatus>,     val pid: Int?)

Constructors

Link copied to clipboard
fun IviServiceHostStatus(    iviInstanceId: IviInstanceId?,     started: Boolean,     serviceStatus: Map<IviServiceId, IviServiceStatus>,     pid: Int?)

Properties

Link copied to clipboard
val isGlobalServiceHostManager: Boolean

True if the IVI service host is a global IVI service host.

Link copied to clipboard
val iviInstanceId: IviInstanceId?

The IVI instance ID of the service host. null if the IVI service host is a global IVI service host.

Link copied to clipboard
val pid: Int?

Process ID of the service host. Only has a value when the service host is running as separate process.

Link copied to clipboard
val serviceStatus: Map<IviServiceId, IviServiceStatus>

A map of service interface statuses associated with the service ID of the interface.

Link copied to clipboard
val started: Boolean

Whether the service host has started or not.