Package de.uplanet.server.transaction
Schnittstelle IAfterCommitAction
- Funktionsschnittstelle:
- Dies ist eine funktionale Schnittstelle, die somit als Zuweisungsziel für einen Lambdaausdruck oder eine Methodenreferenz verwendet werden kann.
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungdefault IAfterCommitActionmerge(IAfterCommitAction p_afterCommitAction) Try to merge this action with the given one.voidperform()Performs this after-commit action.
-
Methodendetails
-
perform
void perform()Performs this after-commit action. -
merge
Try to merge this action with the given one. If the two actions can be merged to an equivalent one then the merge result is returned. Otherwisenullis being returned.The default implementation of this method returns
null.Note: Calling this method must not affect the internal state of this object or the object given as the parameter.
- Parameter:
p_afterCommitAction- The action to be merged.- Gibt zurück:
- The merge result if the two action can be merged, or
nullotherwise.
-