Package com.thinkaurelius.titan.graphdb.database.idassigner

Examples of com.thinkaurelius.titan.graphdb.database.idassigner.StaticIDBlockSizer


    public MockIDAuthority(int blockSize) {
        this(blockSize, BLOCK_SIZE_LIMIT);
    }

    public MockIDAuthority(int blockSize, int blockSizeLimit) {
        blockSizer = new StaticIDBlockSizer(blockSize,blockSizeLimit);
        this.blockSizeLimit = blockSizeLimit;
    }
View Full Code Here

TOP

Related Classes of com.thinkaurelius.titan.graphdb.database.idassigner.StaticIDBlockSizer

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.