1 /* 2 * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright 3 * notice. All rights reserved. 4 */ 5 package com.tc.net.groups; 6 7 import java.util.List; 8 9 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 } 23