Package com.netflix.hystrix.strategy.properties.HystrixPropertiesChainedArchaiusProperty

Examples of com.netflix.hystrix.strategy.properties.HystrixPropertiesChainedArchaiusProperty.StringProperty


    @Test
    public void testChainingString() throws Exception {

        DynamicStringProperty node1 = new DynamicStringProperty("node1", "v1");
        StringProperty node2 = new HystrixPropertiesChainedArchaiusProperty.StringProperty("node2", node1);

        HystrixPropertiesChainedArchaiusProperty.StringProperty node3 = new HystrixPropertiesChainedArchaiusProperty.StringProperty("node3", node2);

        assertTrue("" + node3.get(), "v1".equals(node3.get()));
View Full Code Here

TOP

Related Classes of com.netflix.hystrix.strategy.properties.HystrixPropertiesChainedArchaiusProperty.StringProperty

Copyright © 2018 www.massapicom. 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.