All Downloads are FREE. Search and download functionalities are using the official Maven repository.

reactify.transaction.TransactionChange.scala Maven / Gradle / Ivy

The newest version!
package reactify.transaction

/**
  * TransactionChange represents the transactional changes for a single `Var` in a `Transaction`
  *
  * @param unapply reverts the changes applied during the transaction
  * @param apply applies the changes applied during the transaction
  */
case class TransactionChange(unapply: () => Unit, apply: () => Unit)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy