Package org.jboss.resource.statistic

Examples of org.jboss.resource.statistic.JBossStatistics


   @ManagementOperation(description="Obtain a formatted statistics report",
         impact=Impact.ReadOnly,
         params={@ManagementParameter(name="formatClassName",description="The StatisticsFormatter class name")})
   public Object listFormattedSubPoolStatistics(String formatClassName)
   {
      final JBossStatistics stats = (JBossStatistics)listStatistics();
      final ClassLoader cl = Thread.currentThread().getContextClassLoader();
      Class clazz;
      StatisticsFormatter formatter = null;
     
      try
View Full Code Here


   @ManagementOperation(description="Obtain a formatted statistics report",
         impact=Impact.ReadOnly,
         params={@ManagementParameter(name="formatClassName",description="The StatisticsFormatter class name")})
   public Object listFormattedSubPoolStatistics(String formatClassName)
   {
      final JBossStatistics stats = (JBossStatistics)listStatistics();
      final ClassLoader cl = Thread.currentThread().getContextClassLoader();
      Class clazz;
      StatisticsFormatter formatter = null;
     
      try
View Full Code Here

/*      */   private String poolJndiName;
/*      */
/*      */   @ManagementOperation(description="Obtain a formatted statistics report", impact=ManagedOperation.Impact.ReadOnly, params={@org.jboss.managed.api.annotation.ManagementParameter(name="formatClassName", description="The StatisticsFormatter class name")})
/*      */   public Object listFormattedSubPoolStatistics(String formatClassName)
/*      */   {
/*  117 */     JBossStatistics stats = (JBossStatistics)listStatistics();
/*  118 */     ClassLoader cl = Thread.currentThread().getContextClassLoader();
/*      */
/*  120 */     StatisticsFormatter formatter = null;
/*      */     try
/*      */     {
View Full Code Here

TOP

Related Classes of org.jboss.resource.statistic.JBossStatistics

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.