Examples of IntProperty


Examples of com.netflix.config.ChainedDynamicProperty.IntProperty

    @Test
    public void testChainingInteger() throws Exception {

        DynamicIntProperty node1 = DynamicPropertyFactory.getInstance().getIntProperty("node1", 1);
        IntProperty node2 = new ChainedDynamicProperty.IntProperty("node2", node1);

        ChainedDynamicProperty.IntProperty node3 = new ChainedDynamicProperty.IntProperty("node3", node2);

        assertTrue("" + node3.get(), 1 == node3.get());
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.