Package com.netflix.hystrix.contrib.javanica.collapser

Examples of com.netflix.hystrix.contrib.javanica.collapser.CommandCollapser


                .defaultCommandKey(method.getName())
                .defaultCollapserKey(method.getName())
                .defaultGroupKey(obj.getClass().getSimpleName()).build();
        HystrixExecutable executable;
        if (hystrixCollapser != null) {
            executable = new CommandCollapser(metaHolder);
        } else {
            executable = GenericHystrixCommandFactory.getInstance().create(metaHolder, null);
        }
        Object result;
        try {
View Full Code Here

TOP

Related Classes of com.netflix.hystrix.contrib.javanica.collapser.CommandCollapser

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.