Package org.hibernate.ogm.id.spi

Examples of org.hibernate.ogm.id.spi.NextValueRequest


  private IntegralDataTypeHolder doWorkInCurrentTransactionIfAny(SessionImplementor session) {
    IdSourceKey key = getGeneratorKey( session );

    Number nextValue = gridDialect.nextValue(
        new NextValueRequest(
            key,
            optimizer.applyIncrementSizeToSourceValues() ? incrementSize : 1,
            initialValue
        )
    );
View Full Code Here

TOP

Related Classes of org.hibernate.ogm.id.spi.NextValueRequest

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.