1 21 22 package org.apache.derby.iapi.types; 23 24 import org.apache.derby.iapi.error.StandardException; 25 import java.io.IOException ; 26 27 33 public interface Resetable 34 { 35 38 public void resetStream() throws IOException , StandardException; 39 40 45 public void initStream() throws StandardException; 46 47 51 public void closeStream(); 52 53 } 54 | Popular Tags |