Package org.apache.marmotta.kiwi.generator

Examples of org.apache.marmotta.kiwi.generator.SnowflakeIDGenerator


public class TestValueFactory implements ValueFactory {

    private SnowflakeIDGenerator idGenerator;

    public TestValueFactory() {
        idGenerator = new SnowflakeIDGenerator(1);
    }
View Full Code Here


    private SnowflakeIDGenerator generator;

    @Before
    public void setup() {
        generator = new SnowflakeIDGenerator(0);
    }
View Full Code Here

            logPoolInfo();
        } catch (SQLException e) {

        }

        idGenerator = new SnowflakeIDGenerator(configuration.getDatacenterId());

        log.info("database key generation strategy: Twitter Snowflake");

        //garbageCollector.start();
View Full Code Here

TOP

Related Classes of org.apache.marmotta.kiwi.generator.SnowflakeIDGenerator

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.