view src/org/dancres/blitz/txn/NullBatcher.java @ 23:b7e52953b7a6

Add some cache/memory statistics to help spot potential exhaustion and other tuning issues.
author Dan Creswell <dan.creswell@gmail.com>
date Fri, 28 Aug 2009 17:23:33 +0100
parents 4580bb12db30
children
line wrap: on
line source

package org.dancres.blitz.txn;

import java.io.IOException;
import java.io.Serializable;
import org.prevayler.Command;
import org.prevayler.PrevalentSystem;
import org.prevayler.implementation.SnapshotPrevayler;
import org.prevayler.implementation.PrevaylerCore;
import org.prevayler.implementation.Snapshotter;

public class NullBatcher implements SnapshotPrevayler {
    private PrevaylerCore thePrevayler;

    NullBatcher(PrevaylerCore aPrevayler) {
        thePrevayler = aPrevayler;
    }
    public Snapshotter takeSnapshot() throws IOException {
        return thePrevayler.takeSnapshot();
    }

    public PrevalentSystem system() {
        return thePrevayler.system();
    }

    public Serializable executeCommand(Command aCommand) throws Exception {
        thePrevayler.logCommand(aCommand);
        return aCommand.execute(system());
    }

    public Serializable executeCommand(Command aCommand, boolean sync) throws Exception {
        thePrevayler.logCommand(aCommand, sync);
        return aCommand.execute(system());
    }

}