1 21 22 package org.apache.derby.impl.store.raw.data; 23 24 import org.apache.derby.iapi.store.raw.xact.RawTransaction; 25 import org.apache.derby.iapi.error.StandardException; 26 27 28 34 35 public interface AllocationActions { 36 37 50 public void actionAllocatePage(RawTransaction t, BasePage allocPage, 51 long pageNumber, int doStatus, int undoStatus) 52 throws StandardException; 53 54 65 public void actionChainAllocPage(RawTransaction t, BasePage allocPage, 66 long pageNumber, long pageOffset) 67 throws StandardException; 68 69 94 public void actionCompressSpaceOperation( 95 RawTransaction t, 96 BasePage allocPage, 97 int new_highest_page, 98 int num_pages_truncated) 99 throws StandardException; 100 101 } 102 | Popular Tags |