Package com.foundationdb.util.tap

Examples of com.foundationdb.util.tap.TapReport


            @Override
            public Row next() {
                if(it >= reports.length) {
                    return null;
                }
                TapReport report = reports[it++];
                return new ValuesRow(rowType,
                                      report.getName(),
                                      report.getInCount(),
                                      report.getOutCount(),
                                      report.getCumulativeTime(),
                                      ++rowCounter);
            }
View Full Code Here

TOP

Related Classes of com.foundationdb.util.tap.TapReport

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.