We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4eefd2e commit 3ca654eCopy full SHA for 3ca654e
krossbow-stomp-core/src/commonMain/kotlin/org/hildan/krossbow/stomp/StompSession.kt
@@ -149,16 +149,22 @@ interface StompSession {
149
150
/**
151
* Sends a BEGIN frame with the given [transactionId].
152
+ *
153
+ * @see withTransaction
154
*/
155
suspend fun begin(transactionId: String)
156
157
158
* Sends a COMMIT frame with the given [transactionId].
159
160
161
162
suspend fun commit(transactionId: String)
163
164
165
* Sends an ABORT frame with the given [transactionId].
166
167
168
169
suspend fun abort(transactionId: String)
170
0 commit comments