01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.objectserver.tx;
06:
07: import com.tc.net.groups.NodeID;
08: import com.tc.object.tx.TxnBatchID;
09:
10: import java.io.IOException;
11:
12: public interface TransactionBatchReader {
13: public ServerTransaction getNextTransaction() throws IOException;
14:
15: public TxnBatchID getBatchID();
16:
17: public int getNumTxns();
18:
19: public NodeID getNodeID();
20:
21: }
|