Package org.jboss.cache

Examples of org.jboss.cache.DataContainer.printDetails()


    */
   public static String printCacheDetails(Cache c)
   {
      // internal cast
      DataContainer ci = ((CacheInvocationDelegate) c).getDataContainer();
      return ci.printDetails();
   }

   /**
    * Prints the status of locks in the cache (nodes + locks) to a string
    *
 
View Full Code Here


    */
   public static String printCacheDetails(Cache c)
   {
      // internal cast
      DataContainer ci = ((CacheInvocationDelegate) c).getDataContainer();
      return ci.printDetails();
   }

   /**
    * Prints the status of locks in the cache (nodes + locks) to a string
    *
 
View Full Code Here

      for (Cache cache: c)
      {
         // internal cast
         sb.append("\n--- Cache").append(i++).append(" ---\n");
         DataContainer ci = ((CacheInvocationDelegate) cache).getDataContainer();
         sb.append(ci.printDetails());
         sb.append("\n------------\n\n");
      }
      return sb.toString();
   }
View Full Code Here

    */
   public static String printCacheDetails(Cache c)
   {
      // internal cast
      DataContainer ci = ((CacheInvocationDelegate) c).getDataContainer();
      return ci.printDetails();
   }

   /**
    * Prints the status of locks in the cache (nodes + locks) to a string
    *
 
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.