StompAckHeaders

Creates an instance of StompAckHeaders with the given id header. Optional headers can be configured using the configure lambda.


fun StompAckHeaders(id: String, transaction: String? = null): StompAckHeaders

Deprecated

This overload will be removed in a future version, please use the overload with lambda instead to set optional headers.

Replace with

import org.hildan.krossbow.stomp.headers.StompAckHeaders
StompAckHeaders(id) { this.transaction = transaction }