01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.net.groups;
06:
07: import java.util.List;
08:
09: public interface GroupResponse {
10:
11: /**
12: * @return a list of all responses received
13: */
14: public List getResponses();
15:
16: /**
17: * @return returns a response from nodeID. If the node corresponding to the nodeID did not send any response (due to
18: * disconnect or otherwise) then returns null.
19: */
20: public GroupMessage getResponse(NodeID nodeID);
21:
22: }
|