| org.apache.derby.iapi.store.raw.LogicalUndoable
All known Subclasses: org.apache.derby.impl.store.raw.data.LogicalPageOperation,
LogicalUndoable | public interface LogicalUndoable extends Undoable(Code) | | A LogicalUndoable is a log operation that operates on the content of a page
and the log operation needs logical undo. This interface is used by
LogicalUndo to extract information out of the log record, and to pass back
to the logging system the real location where the roll back should happen.
It has specific page information such as its segment Id, container Id, page
number, and it knows how to restore a storable row from the information
stored in the log record.
See Also: org.apache.derby.iapi.store.access.conglomerate.LogicalUndo |
getContainer | public ContainerHandle getContainer() throws StandardException(Code) | | Return the containerHandle used by this log operation. Logical cannot
change container identity between roll forward and roll back. This
method should only be called by LogicalUndo to extract information from
the log record.
exception: StandardException - Standard Cloudscape error policy |
getRecordHandle | public RecordHandle getRecordHandle()(Code) | | Return the recordHandle stored in the log operation that correspond to
the record that was changed in the rollforward. This method should
only be called by LogicalUndo to extract information from the log
record.
|
resetRecordHandle | public void resetRecordHandle(RecordHandle rh)(Code) | | If the row has moved, reset the record handle that the undo should be applied on.
Parameters: rh - the RecordHandle that represents the row's new location |
restoreLoggedRow | public void restoreLoggedRow(Object[] row, LimitObjectInput in) throws StandardException, IOException(Code) | | Restore the row stored in the log operation. This method should only
be called by LogicalUndo to extract information from the log record.
Parameters: row - an IN/OUT parameter, caller passed in the row withthe correct column number and type, the log operation will restore therow with the optional data stored in the log record. exception: StandardException - Standard Cloudscape error policy exception: IOException - Method may read from in See Also: LogicalUndo |
|
|