1 21 22 package org.apache.derby.iapi.store.access; 23 24 import org.apache.derby.iapi.types.DataValueDescriptor; 25 26 import org.apache.derby.iapi.error.StandardException; 27 28 71 public interface SortObserver 72 { 73 95 DataValueDescriptor[] insertNonDuplicateKey( 96 DataValueDescriptor[] insertRow) 97 throws StandardException; 98 99 120 DataValueDescriptor[] insertDuplicateKey( 121 DataValueDescriptor[] insertRow, 122 DataValueDescriptor[] existingRow) 123 throws StandardException; 124 125 public void addToFreeList( 126 DataValueDescriptor[] objectArray, 127 int maxFreeListSize); 128 129 public DataValueDescriptor[] getArrayClone() 130 throws StandardException; 131 } 132 | Popular Tags |