Tabnine Logo
InfinispanRegionFactory.start
Code IndexAdd Tabnine to your IDE (free)

How to use
start
method
in
org.infinispan.hibernate.cache.v51.InfinispanRegionFactory

Best Java code snippets using org.infinispan.hibernate.cache.v51.InfinispanRegionFactory.start (Showing top 4 results out of 315)

origin: wildfly/wildfly

  @Override
  public void start(SessionFactoryOptions settings, Properties properties) throws CacheException {
    Logger.LOGGER.deprecatedRegionFactory(this.getClass().getName(), this.getClass().getSuperclass().getSuperclass().getName(), SHARED, this.shared);
    properties.setProperty(SHARED, this.shared);
    super.start(settings, properties);
  }
}
origin: org.jboss.eap/jipijapa-hibernate5-legacy

  @Override
  public void start(SessionFactoryOptions settings, Properties properties) throws CacheException {
    Logger.LOGGER.deprecatedRegionFactory(this.getClass().getName(), this.getClass().getSuperclass().getSuperclass().getName(), SHARED, this.shared);
    properties.setProperty(SHARED, this.shared);
    super.start(settings, properties);
  }
}
origin: org.infinispan/infinispan-hibernate-cache-v51

@Override
public void start(ServiceRegistry serviceRegistry, Properties p) {
 final SessionFactoryOptionsImpl sessionFactoryOptions = new SessionFactoryOptionsImpl(
    new SessionFactoryBuilderImpl.SessionFactoryOptionsStateStandardImpl(
       (StandardServiceRegistry) serviceRegistry
    )
 );
 delegate.start(sessionFactoryOptions, p);
}
origin: org.infinispan/infinispan-hibernate-cache-v51

public void start(SessionFactoryOptions settings, Properties properties) throws CacheException {
  cacheManagerName = properties.getProperty(DualNodeTest.NODE_ID_PROP);
  EmbeddedCacheManager existing = ClusterAware.getCacheManager(cacheManagerName);
  locallyAdded = (existing == null);
  if (locallyAdded) {
    delegate.start(settings, properties);
    ClusterAware.addCacheManager(cacheManagerName, delegate.getCacheManager());
  } else {
    delegate.setCacheManager(existing);
  }
}
org.infinispan.hibernate.cache.v51InfinispanRegionFactorystart

Popular methods of InfinispanRegionFactory

  • getCache
  • getPendingPutsCacheConfiguration
  • nextTimestamp
  • buildCollectionRegion
  • buildEntityRegion
  • buildNaturalIdRegion
  • buildQueryResultsRegion
  • buildTimestampsRegion
  • configureTransactionManager
  • createCacheManager
  • createTransactionManagerLookup
  • defineDataTypeCacheConfigurations
  • createTransactionManagerLookup,
  • defineDataTypeCacheConfigurations,
  • determineCacheKeysFactory,
  • extractProperty,
  • getCacheCommandFactory,
  • getCacheKeysFactory,
  • getCacheManager,
  • getOrCreateConfig,
  • getSettings

Popular in Java

  • Start an intent from android
  • addToBackStack (FragmentTransaction)
  • requestLocationUpdates (LocationManager)
  • getApplicationContext (Context)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now