KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > objectserver > tx > TransactionBatchReaderFactory


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
3  * 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 JavaDoc;
11
12 public interface TransactionBatchReaderFactory {
13   public TransactionBatchReader newTransactionBatchReader(CommitTransactionMessage ctxt)
14       throws IOException JavaDoc;
15
16   public TransactionBatchReader newTransactionBatchReader(RelayedCommitTransactionMessage commitMessage)
17       throws IOException JavaDoc;
18 }
19
Popular Tags