Package org.jboss.as.clustering.singleton

Examples of org.jboss.as.clustering.singleton.SingletonElectionPolicy.elect()


        assertSame(node1, new PreferredSingletonElectionPolicy(preference, policy).elect(Arrays.asList(node1, node2)));
        assertSame(node1, new PreferredSingletonElectionPolicy(preference, policy).elect(Arrays.asList(node2, node1)));

        List<ClusterNode> nodes = Arrays.asList(node2, node3);
        when(policy.elect(nodes)).thenReturn(node2);

        assertSame(node2, new PreferredSingletonElectionPolicy(preference, policy).elect(nodes));

        when(policy.elect(nodes)).thenReturn(node3);
View Full Code Here


        List<ClusterNode> nodes = Arrays.asList(node2, node3);
        when(policy.elect(nodes)).thenReturn(node2);

        assertSame(node2, new PreferredSingletonElectionPolicy(preference, policy).elect(nodes));

        when(policy.elect(nodes)).thenReturn(node3);

        assertSame(node3, new PreferredSingletonElectionPolicy(preference, policy).elect(nodes));

        when(policy.elect(nodes)).thenReturn(null);
View Full Code Here

        when(policy.elect(nodes)).thenReturn(node3);

        assertSame(node3, new PreferredSingletonElectionPolicy(preference, policy).elect(nodes));

        when(policy.elect(nodes)).thenReturn(null);

        assertNull(new PreferredSingletonElectionPolicy(preference, policy).elect(nodes));
    }
}
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.