1 22 package org.jboss.ha.framework.interfaces; 23 24 import java.util.List ; 25 26 48 49 public interface FamilyClusterInfo 50 { 51 public String getFamilyName (); 52 53 59 public List getTargets (); 60 public long getCurrentViewId (); 61 62 71 public List removeDeadTarget(Object target); 72 73 79 public List updateClusterInfo (List targets, long viewId); 80 81 public boolean currentMembershipInSyncWithViewId(); 82 83 89 public void resetView (); 90 91 public int getCursor(); 97 public int setCursor (int cursor); 98 public Object getObject (); 99 public Object setObject (Object whatever); 100 101 public final static int UNINITIALIZED_CURSOR = 999999999; 102 } 103 | Popular Tags |