Package org.locationtech.geogig.api

Examples of org.locationtech.geogig.api.RevTreeImpl


        ObjectId id = ObjectId.forString("fake");
        long size = 100000000;
        int childTreeCount = 0;
        Map<Integer, Bucket> bucketTrees = createBuckets(32);

        final RevTreeImpl tree = RevTreeImpl.createNodeTree(id, size, childTreeCount, bucketTrees);

        RevTree roundTripped = read(tree.getId(), write(tree));
        assertTreesAreEqual(tree, roundTripped);

    }
View Full Code Here

TOP

Related Classes of org.locationtech.geogig.api.RevTreeImpl

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.