Service

data class Service(val name: String, val addresses: List<ServiceAddress>, val status: String? = null)

A simple structure for enumerating services provided by an instance.

Constructors

Link copied to clipboard
constructor(name: String, addresses: List<ServiceAddress>, status: String? = null)

Properties

Link copied to clipboard

Addresses we are listening to

Link copied to clipboard

Name of the service

Link copied to clipboard
val status: String? = null

Service status

Functions

Link copied to clipboard
open override fun toString(): String