Package org.jboss.cache.pojo.impl

Examples of org.jboss.cache.pojo.impl.PojoCacheImpl


    *               setCache the underlying Cache instance.
    * @return PojoCache
    */
   public static PojoCache createCache(String config)
   {
      return new PojoCacheImpl(config, true);
   }
View Full Code Here


    * @param start  If true, it will start the cache life cycle.
    * @return PojoCache
    */
   public static PojoCache createCache(String config, boolean start)
   {
      return new PojoCacheImpl(config, start);
   }
View Full Code Here

    * @param start  If true, it will start the cache life cycle.
    * @return PojoCache
    */
   public static PojoCache createCache(Configuration config, boolean start)
   {
      return new PojoCacheImpl(config, start);
   }
View Full Code Here

TOP

Related Classes of org.jboss.cache.pojo.impl.PojoCacheImpl

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.