Examples of BatchHystrixCommand


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
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.