java.lang.Object
com.github.sttk.sabi.DaxBase
- All Implemented Interfaces:
Dax
,AutoCloseable
DaxBase
is the class that defines the methods to manage
DaxSrc
(s).
And this class defines private methods to process a transaction.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final record
static final record
DaxSrcIsNotFound
is the error reason which indicates that a specifiedDaxSrc
is not found.static final record
FailToCommitDaxConn
is the error reason which indicates that some connections failed to commit.static final record
FailToCreateDaxConn
is the error reason which indicates that it is failed to create a new connection to a data store.static final record
FailToRunLogic
is the error reason which indicates that a logic failed to run.static final record
FailToSetupGlobalDaxSrcs
is the error reason which indicates that someDaxSrc
(s) failed to set up.static final record
FailToSetupLocalDaxSrc
is the error reason which indicates a localDaxSrc
failed to set up. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected void
begin()
Begins a transaction processing.void
close()
Closes and frees all localDaxSrc
(s).protected void
commit()
Commits updates in a transaction processing.void
Closes and removes a localDaxSrc
specified by the argument name.protected void
end()
Ends a transaction.<C extends DaxConn>
CgetDaxConn
(String name) Gets aDaxConn
instance associated with the argument name.protected void
rollback()
Rollbacks all updates in a transaction.final <D> void
Executes logics in a transaction.void
Registers and sets up a localDaxSrc
with an argument name.
-
Constructor Details
-
DaxBase
public DaxBase()The default constructor.
-
-
Method Details
-
close
public void close()Closes and frees all localDaxSrc
(s).- Specified by:
close
in interfaceAutoCloseable
-
uses
Registers and sets up a localDaxSrc
with an argument name.- Parameters:
name
- The name for theDaxSrc
to be registered.ds
- TheDaxSrc
instance to be registered.- Throws:
Err
- If an exception occuers by either of the following reasons:DaxBase.FailToSetupLocalDaxSrc
If failing to setup some of localDaxSrc
(s).
-
disuses
Closes and removes a localDaxSrc
specified by the argument name.- Parameters:
name
- The name of the localDaxSrc
to be removed.
-
begin
protected void begin()Begins a transaction processing. This method forbids registration of more localDaxSrc
(s) while a transaction processing. -
commit
Commits updates in a transaction processing.- Throws:
Err
- If an exception occuers by either of the following reasons:DaxBase.FailToCommitDaxConn
If failing to commit updates via someDaxConn
(s).
-
rollback
protected void rollback()Rollbacks all updates in a transaction. -
end
protected void end() -
getDaxConn
Gets aDaxConn
instance associated with the argument name. The name is same as what was registered withDaxSrc
usingSabi.uses(java.lang.String, com.github.sttk.sabi.DaxSrc)
method. -
txn
Executes logics in a transaction. First, this method casts the argumentDaxBase
to the type specified as a logic's argument. Next, this method begins the transaction, and executes the argument logics. Then, if no error occurs, this method commits all updates in the transaction, otherwise rollbaks them. If there are commit errors after someDaxConn
(s) are committed, or there areDaxConn
(s) which don't have rollback mechanism, this method executesDaxConn.forceBack(com.github.sttk.sabi.AsyncGroup)
methods of theseDaxConn
(s). And after that, this method ends the transaction. During a transaction, it is denied to add or remove any localDaxSrc
(s).- Throws:
Err
-