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 ;10 11 public interface TransactionBatch extends Recyclable {12 13 public Collection getAcknowledgedTransactionIDs();14 15 public boolean isEmpty();16 17 public TCByteBuffer[] getData();18 19 }