01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.object.msg;
06:
07: import com.tc.net.protocol.tcm.MessageChannel;
08:
09: import java.util.Set;
10:
11: public interface ClientHandshakeAckMessage {
12: public void send();
13:
14: public long getObjectIDSequenceStart();
15:
16: public long getObjectIDSequenceEnd();
17:
18: public boolean getPersistentServer();
19:
20: public void initialize(long start, long end, boolean persistent,
21: Set allNodes, String this NodeID, String serverVersion);
22:
23: public MessageChannel getChannel();
24:
25: public String[] getAllNodes();
26:
27: public String getThisNodeId();
28:
29: public String getServerVersion();
30:
31: }
|