1 5 package org.h2.compress; 6 7 import java.sql.SQLException ; 8 9 public interface Compresser { 10 11 int NO = 0, LZF = 1, DEFLATE = 2; 12 13 int getAlgorithm(); 14 int compress(byte[] in, int inLen, byte[] out, int outPos); 15 void expand(byte[] in, int inPos, int inLen, byte[] out, int outPos, int outLen) throws Exception ; 16 void setOptions(String options) throws SQLException ; 17 } 18 | Popular Tags |