KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > msg > AcknowledgeTransactionMessage


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.msg;
5
6 import com.tc.net.protocol.tcm.ChannelID;
7 import com.tc.object.session.SessionID;
8 import com.tc.object.tx.TransactionID;
9
10 public interface AcknowledgeTransactionMessage {
11
12   public void initialize(ChannelID channelID, TransactionID txID);
13
14   public ChannelID getRequesterID();
15
16   public TransactionID getRequestID();
17
18   public void send();
19
20   public ChannelID getChannelID();
21   
22   public SessionID getLocalSessionID();
23
24 }
Popular Tags