ServerInfo

data class ServerInfo(val name: String, val version: String?, val comments: List<String> = emptyList())

Represents information about the STOMP server.

Constructors

Link copied to clipboard
constructor(name: String, version: String?, comments: List<String> = emptyList())

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Optional comments.

Link copied to clipboard

The name of the server vendor or implementation.

Link copied to clipboard

The version of the server itself (not of the STOMP protocol that it speaks).