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.Page

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

Methods in org.apache.derby.iapi.store.raw that return Page
 Page ContainerHandle.addPage()
          Add an empty page to the container and obtain exclusive access to it.
 Page ContainerHandle.addPage(int flag)
          Add an empty page to the container and obtain exclusive access to it.
 Page ContainerHandle.getPage(long pageNumber)
          Obtain exclusive access to the page with the given page number.
 Page ContainerHandle.getPageNoWait(long pageNumber)
          Identical to getPage but returns null immediately if the desired page is already latched by another Container.
 Page ContainerHandle.getUserPageNoWait(long pageNumber)
          Obtain exclusive access to the page with the given page number.
 Page ContainerHandle.getUserPageWait(long pageNumber)
          Obtain exclusive access to the page with the given page number.
 Page ContainerHandle.getFirstPage()
          Obtain exclusive access to the current first page of the container.
 Page ContainerHandle.getNextPage(long prevNum)
          Obtain exclusive access to the next valid page of the given page number in the container.
 Page ContainerHandle.getPageForInsert(int flag)
          Get a page for insert.
 Page ContainerHandle.getPageForCompress(int flag, long pageno)
           
 

Methods in org.apache.derby.iapi.store.raw with parameters of type Page
 void Page.copyAndPurge(Page destPage, int src_slot, int num_rows, int dest_slot)
          move rows from one page to another, purging in the process.
 void ContainerHandle.removePage(Page page)
          Remove this page from the container and unlatch the page.