01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.object.msg;
05:
06: import com.tc.bytes.TCByteBuffer;
07: import com.tc.net.groups.ClientID;
08: import com.tc.object.dna.impl.ObjectStringSerializer;
09: import com.tc.object.tx.TransactionBatch;
10:
11: /**
12: * @author steve
13: */
14: public interface CommitTransactionMessage {
15:
16: public ObjectStringSerializer getSerializer();
17:
18: public void setBatch(TransactionBatch batch,
19: ObjectStringSerializer serializer);
20:
21: public TCByteBuffer[] getBatchData();
22:
23: public void send();
24:
25: public ClientID getClientID();
26:
27: }
|