Examples of CommitWithChangeCounts


Examples of org.locationtech.geogig.web.api.commands.Log.CommitWithChangeCounts

    public void writeCommitsWithChangeCounts(Iterator<CommitWithChangeCounts> entries,
            int elementsPerPage) throws XMLStreamException {
        int counter = 0;

        while (entries.hasNext() && counter < elementsPerPage) {
            CommitWithChangeCounts entry = entries.next();

            writeCommit(entry.getCommit(), "commit", entry.getAdds(), entry.getModifies(),
                    entry.getRemoves());

            counter++;
        }

        if (entries.hasNext()) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.