Package com.netflix.hystrix.contrib.javanica.command

Examples of com.netflix.hystrix.contrib.javanica.command.BatchHystrixCommand


     * Creates batch command.
     */
    @Override
    protected HystrixCommand<List<Optional<Object>>> createCommand(
            Collection<CollapsedRequest<Object, Object>> collapsedRequests) {
        BatchHystrixCommand command = BatchHystrixCommandFactory.getInstance().create(metaHolder, collapsedRequests);
        command.setFallbackEnabled(metaHolder.getHystrixCollapser().fallbackEnabled());
        return command;
    }
View Full Code Here

TOP

Related Classes of com.netflix.hystrix.contrib.javanica.command.BatchHystrixCommand

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.