Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
org.apache.derby.iapi.store.raw.ContainerHandle

Uses of ContainerHandle in org.apache.derby.iapi.store.raw
 

Methods in org.apache.derby.iapi.store.raw that return ContainerHandle
 ContainerHandle Transaction.openContainer(ContainerKey containerId, int mode)
          Open a container, with the transaction's default locking policy.
 ContainerHandle Transaction.openContainer(ContainerKey containerId, LockingPolicy locking, int mode)
          Open a container, with the defined locking policy, otherwise as openContainer(int containerId, boolean forUpdate).
 ContainerHandle LogicalUndoable.getContainer()
          Return the containerHandle used by this log operation.
 

Methods in org.apache.derby.iapi.store.raw with parameters of type ContainerHandle
 boolean LockingPolicy.lockContainer(Transaction t, ContainerHandle container, boolean waitForLock, boolean forUpdate)
          Called when a container is opened.
 void LockingPolicy.unlockContainer(Transaction t, ContainerHandle container)
          Called when a container is closed.
 boolean LockingPolicy.lockRecordForRead(Transaction t, ContainerHandle container, RecordHandle record, boolean waitForLock, boolean forUpdate)
          Called before a record is fetched.
 void LockingPolicy.unlockRecordAfterRead(Transaction t, ContainerHandle container, RecordHandle record, boolean forUpdate, boolean row_qualified)
          Called after a record has been fetched.