Package org.hibernate.ogm.dialect

Examples of org.hibernate.ogm.dialect.BatchableGridDialect


        if ( gridDialect instanceof ServiceRegistryAwareService ) {
          ( (ServiceRegistryAwareService) gridDialect ).injectServices( registry );
        }

        if ( gridDialect instanceof BatchableGridDialect ) {
          BatchableGridDialect batchable = (BatchableGridDialect) gridDialect;
          gridDialect = supportsQueries ? new QueryableBatchOperationsDelegator( batchable ) : new BatchOperationsDelegator( batchable );
        }

        log.useGridDialect( gridDialect.getClass().getName() );
        if ( GridDialectLogger.activationNeeded() ) {
View Full Code Here

TOP

Related Classes of org.hibernate.ogm.dialect.BatchableGridDialect

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.