view src/org/dancres/blitz/txn/NullBatcher.java @ 34:6f68e94c1fb8 default tip

Add CondensedStats monitoring utility, equivalent to vmstat
author Dominic Cleal <dominic-cleal@cdo2.com>
date Thu, 05 Aug 2010 11:07:25 +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());
    }

}