KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > tx > TransactionBatch


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.object.tx;
5
6 import com.tc.bytes.TCByteBuffer;
7 import com.tc.lang.Recyclable;
8
9 import java.util.Collection JavaDoc;
10
11 public interface TransactionBatch extends Recyclable {
12
13   public Collection JavaDoc getAcknowledgedTransactionIDs();
14   
15   public boolean isEmpty();
16
17   public TCByteBuffer[] getData();
18   
19 }
Popular Tags