Package org.elasticsearch.http

Examples of org.elasticsearch.http.HttpStats


        return this.boundAddress;
    }

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


    return new HttpInfo(boundAddress(), 0);
  }

  @Override
  public HttpStats stats() {
    return new HttpStats(0, 0);
  }
View Full Code Here

TOP

Related Classes of org.elasticsearch.http.HttpStats

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.