Package org.hibernate.ogm.grid

Examples of org.hibernate.ogm.grid.IdSourceKey


    Serializable generatedValue = session.getTransactionCoordinator().getTransaction().createIsolationDelegate().delegateWork( work, workInTransaction );
    return generatedValue;
  }

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

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

TOP

Related Classes of org.hibernate.ogm.grid.IdSourceKey

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.