Package org.xbib.elasticsearch.action.cluster.admin.websocket

Examples of org.xbib.elasticsearch.action.cluster.admin.websocket.WebsocketInfoRequest


    }

    @Before
    public void setUp() throws Exception {
        startNode("1");
        WebsocketInfoRequest request = new WebsocketInfoRequest("1");
        WebsocketInfoResponse response = client("1").admin().cluster().execute(WebsocketInfoAction.INSTANCE, request).actionGet();
        InetSocketTransportAddress address = response.getAt(0).getAddress();
        addresses.put("1", address);

        logger.info("websocket address = {}", address);
View Full Code Here

TOP

Related Classes of org.xbib.elasticsearch.action.cluster.admin.websocket.WebsocketInfoRequest

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.