Interface AbstractUserDatabase.Transaction

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void commit()
      Commits the transaction.
      void rollback()
      Rolls back the transaction.
      • Methods inherited from interface java.lang.AutoCloseable

        close
    • Method Detail

      • commit

        void commit()
        Commits the transaction.

        See Also:
        rollback()
      • rollback

        void rollback()
        Rolls back the transaction.

        See Also:
        commit()