Interface Transaction

All Known Implementing Classes:
JdbcTransaction, WmqXATransaction

@Published(tag="architect") public interface Transaction
トランザクション制御を行うインタフェース。
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    トランザクションを開始する。
    void
    現在のトランザクションをコミットする。
    void
    現在のトランザクションをロールバックする。
  • Method Details

    • begin

      void begin()
      トランザクションを開始する。
    • commit

      void commit()
      現在のトランザクションをコミットする。
    • rollback

      void rollback()
      現在のトランザクションをロールバックする。