1 4 package com.tc.objectserver.tx; 5 6 import com.tc.net.protocol.tcm.ChannelID; 7 import com.tc.object.tx.TransactionID; 8 import com.tc.object.tx.TxnBatchID; 9 10 public interface TransactionBatchManager { 11 12 public void defineBatch(ChannelID channelID, TxnBatchID batchID, int numTxns) throws BatchDefinedException; 13 14 public boolean batchComponentComplete(ChannelID channelID, TxnBatchID batchID, TransactionID txnID) 15 throws NoSuchBatchException; 16 17 public void shutdownClient(ChannelID channelID); 18 } 19 | Popular Tags |