Package org.jboss.cache.config.BuddyReplicationConfig

Examples of org.jboss.cache.config.BuddyReplicationConfig.BuddyLocatorConfig


   private void setupInternals(BuddyReplicationConfig config)
   {
      this.config = config;
      trace = log.isTraceEnabled();
      BuddyLocatorConfig blc = config.getBuddyLocatorConfig();
      try
      {
         // it's OK if the buddy locator config is null.
         buddyLocator = (blc == null) ? createDefaultBuddyLocator() : createBuddyLocator(blc);
      }
View Full Code Here

TOP

Related Classes of org.jboss.cache.config.BuddyReplicationConfig.BuddyLocatorConfig

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.