Interface MOMutableRow2PC<SR extends SubRequest<?>>

    • Method Detail

      • prepareRow

        void prepareRow​(SR subRequest,
                        MOTableRow changeSet)
        Prepares a row for changes described by the supplied change set. If the modification cannot be successfully prepared, the error status of the supplied subRequest should be set to the appropriate error status value.

        This method is called only once per modified row.

        Parameters:
        subRequest - the sub-request that triggered the row change and that can be used to deny the commit phase by setting its error status.
        changeSet - a MOTableRow instance that represents the state of the row if all changes have been applied successfully.
      • prepare

        void prepare​(SR subRequest,
                     MOTableRow changeSet,
                     int column)
        Prepares changing a single column.
        Parameters:
        subRequest - the sub-request that corresponds to the column change. This object can be used to deny the commit phase by setting its error status.
        changeSet - a MOTableRow instance that represents the state of the row if all changes have been applied successfully.
        column - the column index of the column to be changed.
      • commit

        void commit​(SR subRequest,
                    MOTableRow changeSet,
                    int column)
        Commits changes to single column.
        Parameters:
        subRequest - the sub-request that corresponds to the column change. This object can be used to deny the commit phase and triggering the undo phase by setting its error status.
        changeSet - a MOTableRow instance that represents the state of the row if all changes have been applied successfully.
        column - the column index of the column to be changed.
      • commitRow

        void commitRow​(SR subRequest,
                       MOTableRow changeSet)
        Commits a row as described by the supplied change set. If the modification cannot be successfully committed, the error status of the supplied subRequest should be set to commitFailed. Setting this error should be avoided under any circumstances.

        This method is called only once per modified row.

        Parameters:
        subRequest - the sub-request that triggered the row change and that can be used to trigger the undo phase by setting its error status.
        changeSet - a MOTableRow instance that represents the state of the row if all changes have been applied successfully.
      • cleanup

        void cleanup​(SR subRequest,
                     int column)
        Cleanups resources holds for changes to a single column.
        Parameters:
        subRequest - the sub-request that corresponds to the column change.
        column - the column index of the changed column.
      • cleanupRow

        void cleanupRow​(SR request,
                        DefaultMOTable.ChangeSet changeSet)
        Cleans up resources for a row.

        This method is called only once per modified row.

        Parameters:
        request - the sub-request that triggered the row change.
        changeSet - a MOTableRow instance that represents the state of the row if all changes have been applied successfully.
      • undo

        void undo​(SR subRequest,
                  int column)
        Undos the changes to a single column.
        Parameters:
        subRequest - the sub-request that corresponds to the column change.
        column - the column index of the changed column.
      • undoRow

        void undoRow​(SR subRequest,
                     DefaultMOTable.ChangeSet changeSet)
        Undoes changes to a row.

        This method is called only once per modified row.

        Parameters:
        subRequest - the sub-request that triggered the row change.
        changeSet - a MOTableRow instance that represents the state of the row if all changes have been applied successfully.