Package org.elasticsearch.client.support

Examples of org.elasticsearch.client.support.Headers


    @Override
    protected Client buildClient(Settings headersSettings, GenericAction[] testedActions) {
        Settings settings = HEADER_SETTINGS;

        Headers headers = new Headers(settings);
        Actions actions = new Actions(settings, threadPool, testedActions);

        NodeClusterAdminClient clusterClient = new NodeClusterAdminClient(threadPool, actions, headers);
        NodeIndicesAdminClient indicesClient = new NodeIndicesAdminClient(threadPool, actions, headers);
        NodeAdminClient adminClient = new NodeAdminClient(settings, clusterClient, indicesClient);
View Full Code Here

TOP

Related Classes of org.elasticsearch.client.support.Headers

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.