Package com.netflix.exhibitor.core.state

Examples of com.netflix.exhibitor.core.state.ServerSpec.toSpecString()


    {
        ServerSpec      s1 = new ServerSpec("host", 1, ServerType.STANDARD);
        ServerSpec      s2 = new ServerSpec("host", 2, ServerType.OBSERVER);

        Assert.assertEquals(s1.toSpecString(), "1:host");
        Assert.assertEquals(s2.toSpecString(), "O:2:host");
    }
}
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.