Package org.jboss.ha.framework.interfaces

Examples of org.jboss.ha.framework.interfaces.FamilyClusterInfo.resetView()


      assertEquals(1, fci.getCursor());
     
      fci.removeDeadTarget("B");
      assertEquals(1, fci.getCursor());
     
      fci.resetView();
      assertEquals(1, fci.getCursor());
     
      fci.setCursor(1);
      assertEquals(1, fci.getCursor());
     
View Full Code Here


      assertSame(ONE, fci.getObject());
     
      fci.removeDeadTarget("B");
      assertSame(ONE, fci.getObject());
     
      fci.resetView();
      assertSame(ONE, fci.getObject());
     
      fci.setObject(ONE);
      assertSame(ONE, fci.getObject());
     
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.