comparison src/org/dancres/blitz/entry/EntryReposRecovery.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.entry;
2
3 import java.io.IOException;
4
5 import org.dancres.blitz.oid.OID;
6 import org.dancres.blitz.arc.CacheBlockDescriptor;
7 import org.dancres.blitz.arc.RecoverySummary;
8
9 /**
10 * Used by <code>OpInfo</code> instances to manage Entry state
11 */
12 public interface EntryReposRecovery extends EntryRepository {
13 public CacheBlockDescriptor load(OID anOID) throws IOException;
14
15 public void flush(CacheBlockDescriptor aCBD) throws IOException;
16
17 public Counters getCounters();
18
19 public RecoverySummary recover(EntrySleeveImpl aSleeve) throws IOException;
20 }