14 lines
216 B
Java
14 lines
216 B
Java
package org.hsqldb.persist;
|
|
|
|
public interface LobStore {
|
|
void close();
|
|
|
|
byte[] getBlockBytes(int i, int i2);
|
|
|
|
int getBlockSize();
|
|
|
|
void setBlockBytes(byte[] bArr, int i, int i2);
|
|
|
|
void synch();
|
|
}
|