Package com.alibaba.otter.shared.communication.model.statistics

Examples of com.alibaba.otter.shared.communication.model.statistics.ThroughputStatEvent


            logger.warn("add sendResetDelayCount failed by buffer is full with {}", delayCount);
        }
    }

    public void sendThroughputs(final List<ThroughputStat> stats) {
        ThroughputStatEvent event = new ThroughputStatEvent();
        event.setStats(stats);
        nodeCommmunicationClient.callManager(event, new Callback<Object>() {

            public void call(Object event) {
                logger.info("sendThroughput successed for {}", stats);
            }
View Full Code Here

TOP

Related Classes of com.alibaba.otter.shared.communication.model.statistics.ThroughputStatEvent

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.