1 9 package org.ozoneDB.blob; 10 11 import org.ozoneDB.OzoneRemote; 12 13 14 21 public interface BLOBContainer extends OzoneRemote { 22 23 24 public void init( int _pageSize ); 26 27 public void write( int index, byte[] b, int off, int len ) throws Exception ; 29 30 public byte[] read( int index, int len ) throws Exception ; 31 32 33 public int available( int index ) throws Exception ; 34 } 35 | Popular Tags |