view src/org/dancres/blitz/arc/RecoverySummary.java @ 27:511648fa4d64 Version 2.1

Version to 2.1
author Dan Creswell <dan.creswell@gmail.com>
date Mon, 04 Jan 2010 13:00:40 +0000
parents 3dc0c5604566
children
line wrap: on
line source

package org.dancres.blitz.arc;

/**
   When ArcCache is asked to recover an instance it returns an instance of
   this class which reports the CacheBlockDescriptor of the instance and
   whether or not the instance was present on disk
 */
public class RecoverySummary {
    private boolean wasOnDisk;
    private CacheBlockDescriptor theCBD;

    RecoverySummary(CacheBlockDescriptor aCBD, boolean onDisk) {
        theCBD = aCBD;
        wasOnDisk = onDisk;
    }

    public CacheBlockDescriptor getCBD() {
        return theCBD;
    }

    public boolean wasOnDisk() {
        return wasOnDisk;
    }
}