Package org.jboss.cache.factories.context

Examples of org.jboss.cache.factories.context.OptimisticContextFactory


         case MVCC:
            if (log.isTraceEnabled()) log.trace("Creating an MVCC context factory");
            return componentType.cast(new MVCCContextFactory());
         case OPTIMISTIC:
            if (log.isTraceEnabled()) log.trace("Creating an optimistic context factory");
            return componentType.cast(new OptimisticContextFactory());
         case PESSIMISTIC:
            if (log.isTraceEnabled()) log.trace("Creating a pessimistic context factory");
            return componentType.cast(new PessimisticContextFactory());
      }
      throw new ConfigurationException("Unknown configuration node locking scheme");
View Full Code Here

TOP

Related Classes of org.jboss.cache.factories.context.OptimisticContextFactory

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.