AsyncTransaction

data class AsyncTransaction(val id: String, val operations: List<suspend () -> Unit>, val transactionHasBeenApplied: MutableStateFlow<Boolean>)

Constructors

Link copied to clipboard
constructor(id: String, operations: List<suspend () -> Unit>, transactionHasBeenApplied: MutableStateFlow<Boolean>)

Properties

Link copied to clipboard
val id: String
Link copied to clipboard
val operations: List<suspend () -> Unit>
Link copied to clipboard
val transactionHasBeenApplied: MutableStateFlow<Boolean>