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

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


        });

    }

    public void sendTableStats(final List<TableStat> stats) {
        TableStatEvent event = new TableStatEvent();
        event.setStats(stats);
        nodeCommmunicationClient.callManager(event, new Callback<Object>() {

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

TOP

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

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.