vertx / io.vertx.ext.stomp.utils / Headers

Headers

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

Constructors

<init>

Headers()

An implementation of HashMap to store STOMP frame headers. This implementations offer fluent methods to ease the construction of the headers.

Functions

add

open fun add(header: String, value: String): Headers

addAll

open fun addAll(other: MutableMap<String, String>): Headers

create

open static fun create(): Headers
open static fun create(vararg kv: String): Headers
open static fun create(headers: MutableMap<String, String>): Headers