comparison src/org/dancres/blitz/meta/RegistryAccessor.java @ 0:3dc0c5604566

Initial checkin of blitz 2.0 fcs - no installer yet.
author Dan Creswell <dan.creswell@gmail.com>
date Sat, 21 Mar 2009 11:00:06 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3dc0c5604566
1 package org.dancres.blitz.meta;
2
3 import java.io.IOException;
4 import java.io.Serializable;
5
6 /**
7 @see org.dancres.blitz.meta.Registry
8 */
9 public interface RegistryAccessor {
10 public byte[] loadRaw(byte[] aKey) throws IOException;
11
12 public Serializable load(byte[] aKey) throws IOException;
13
14 public void save(byte[] aKey, Serializable anObject) throws IOException;
15
16 public void delete(byte[] aKey) throws IOException;
17
18 public MetaIterator readAll() throws IOException;
19 }