open class Headers : HashMap<String, String>
An implementation of HashMap to store STOMP frame headers. This implementations offer fluent methods to ease the construction of the headers.
Author
Clement Escoffier
Headers()
An implementation of HashMap to store STOMP frame headers. This implementations offer fluent methods to ease the construction of the headers. |
open fun add(header: String, value: String): Headers |
|
open fun addAll(other: MutableMap<String, String>): Headers |
|
open static fun create(): Headersopen static fun create(vararg kv: String): Headersopen static fun create(headers: MutableMap<String, String>): Headers |