Package org.elasticsearch.transport

Examples of org.elasticsearch.transport.TransportStats


        return new InetSocketTransportAddress((InetSocketAddress) socketAddress);
    }

    @Override public TransportStats stats() {
        OpenChannelsHandler channels = serverOpenChannels;
        return new TransportStats(channels == null ? 0 : channels.numberOfOpenChannels());
    }
View Full Code Here

TOP

Related Classes of org.elasticsearch.transport.TransportStats

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.