1 /*2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright3 * notice. All rights reserved.4 */5 package com.tc.objectserver.tx;6 7 import com.tc.l2.msg.RelayedCommitTransactionMessage;8 import com.tc.object.msg.CommitTransactionMessage;9 10 import java.io.IOException ;11 12 public interface TransactionBatchReaderFactory {13 public TransactionBatchReader newTransactionBatchReader(CommitTransactionMessage ctxt)14 throws IOException ;15 16 public TransactionBatchReader newTransactionBatchReader(RelayedCommitTransactionMessage commitMessage)17 throws IOException ;18 }19