DittoTransactionInfo

data class DittoTransactionInfo(val id: String, val hint: String, val isReadOnly: Boolean)

Encapsulates information about a transaction.

Since

4.11.0

Constructors

Link copied to clipboard
constructor(id: String, hint: String, isReadOnly: Boolean)

Properties

Link copied to clipboard

The user hint passed when creating the transaction, useful for debugging and testing.

Link copied to clipboard
val id: String

A globally unique ID of the transaction.

Link copied to clipboard

Indicates whether mutating DQL statements can be executed in the transaction. Defaults to false. See DittoStore.transaction for more information.