Package voldemort.common.nio

Examples of voldemort.common.nio.CommBufferSizeStats


    private CommBufferSizeStats serverCommBufferStats;

    public NioSelectorManagerStats() {
        this.numActiveConnections = new MutableInt(0);
        this.serverCommBufferStats = new CommBufferSizeStats();

        // Theoretically, the delay can be only upto SELECTOR_POLL_MS.
        // But sometimes wallclock time can be higher
        this.selectTimeMsHistogram = new Histogram(SelectorManager.SELECTOR_POLL_MS * 2,
                                                   1,
View Full Code Here


    public ClientRequestExecutor(Selector selector,
                                 SocketChannel socketChannel,
                                 int socketBufferSize) {
        // Not tracking or exposing the comm buffer statistics for now
        super(selector, socketChannel, socketBufferSize, new CommBufferSizeStats());
        isExpired = false;
    }
View Full Code Here

TOP

Related Classes of voldemort.common.nio.CommBufferSizeStats

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.