Examples of StandardServiceRegistryBuilder


Examples of org.hibernate.boot.registry.StandardServiceRegistryBuilder

  }

  private void evictOrRemoveAllTest(String configName) throws Exception {
    Configuration cfg = createConfiguration();
    InfinispanRegionFactory regionFactory = CacheTestUtil.startRegionFactory(
        new StandardServiceRegistryBuilder().applySettings( cfg.getProperties() ).build(),
        cfg,
        getCacheTestSupport()
    );
    AdvancedCache localCache = getInfinispanCache( regionFactory );

    // Sleep a bit to avoid concurrent FLUSH problem
    avoidConcurrentFlush();

    GeneralDataRegion localRegion = (GeneralDataRegion) createRegion(
        regionFactory,
        getStandardRegionName( REGION_PREFIX ),
        cfg.getProperties(),
        null
    );

    cfg = createConfiguration();
    regionFactory = CacheTestUtil.startRegionFactory(
        new StandardServiceRegistryBuilder().applySettings( cfg.getProperties() ).build(),
        cfg,
        getCacheTestSupport()
    );
      AdvancedCache remoteCache = getInfinispanCache( regionFactory );
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.