01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Library License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by SMB are
05: // Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
06: //
07: // $Id: BLOBPage.java,v 1.1 2001/12/18 10:31:30 per_nyfelt Exp $
08:
09: package org.ozoneDB.blob;
10:
11: import org.ozoneDB.*;
12: import java.io.*;
13:
14: /**
15: * Remote interface of BLOBPageImpl.
16: *
17: *
18: * @author <a href="http://www.softwarebuero.de/">SMB</a>
19: * @version $Revision: 1.1 $Date: 2001/12/18 10:31:30 $
20: */
21: public interface BLOBPage extends OzoneRemote {
22:
23: public void init(int _space); //update
24:
25: public void write(byte[] b, int off); //update
26:
27: public byte[] read(int off, int len);
28:
29: public int size();
30: }
|