use of org.apache.ignite.spi.loadbalancing.roundrobin.RoundRobinLoadBalancingSpi in project ignite by apache.
the class GridManagerStopSelfTest method testStopLoadBalancingManager.
/**
* @throws Exception If failed.
*/
public void testStopLoadBalancingManager() throws Exception {
RoundRobinLoadBalancingSpi spi = new RoundRobinLoadBalancingSpi();
injectLogger(spi);
ctx.config().setLoadBalancingSpi(spi);
GridLoadBalancerManager mgr = new GridLoadBalancerManager(ctx);
mgr.stop(true);
}
Aggregations