Interface Transaction


  • public interface Transaction
    A transaction.
    • Method Detail

      • commit

        Future<Void> commit()
        Commit the current transaction.
      • rollback

        Future<Void> rollback()
        Rollback the transaction and release the associated resources.
      • completion

        Future<Void> completion()
        Return the transaction completion Future that succeeds when the transaction commits and fails with TransactionRollbackException when the transaction rolls back.
        Returns:
        the transaction result