Package org.jboss.invocation

Examples of org.jboss.invocation.InvocationStatistics


      // InvocationStatistics holds refs to Methods from
      // application classes, so to avoid a classloader
      // leak, lets not just resetStats() but also replace
      // the object
      invokeStats.resetStats(); // in case someone else has a ref
      invokeStats = new InvocationStatistics();
      marshalledInvocationMapping.clear();
   }
View Full Code Here


         CountStatisticImpl removeCount = (CountStatisticImpl) stats.getRemoveCount();
         Long removes = (Long) server.getAttribute(containerName, "RemoveCount");
         removeCount.set(removes.longValue());

         // Now build a TimeStatistics for every
         InvocationStatistics times = (InvocationStatistics) server.getAttribute(containerName, "InvokeStats");
         HashMap timesMap = new HashMap(times.getStats());
         Iterator iter = timesMap.entrySet().iterator();
         while (iter.hasNext())
         {
            Map.Entry entry = (Map.Entry) iter.next();
            Method m = (Method) entry.getKey();
View Full Code Here

      // InvocationStatistics holds refs to Methods from
      // application classes, so to avoid a classloader
      // leak, lets not just resetStats() but also replace
      // the object
      invokeStats.resetStats(); // in case someone else has a ref
      invokeStats = new InvocationStatistics();
      marshalledInvocationMapping.clear();
   }
View Full Code Here

/*      */
/*  219 */     this.serverAction = new MBeanServerAction();
/*      */
/*  225 */     this.proxyFactoryTL = new ThreadLocal();
/*      */
/*  234 */     this.invokeStats = new InvocationStatistics();
/*      */
/*  242 */     this.isJaccEnabled = false;
/*      */   }
View Full Code Here

/*  916 */     this.localHomeInterface = null;
/*  917 */     this.localInterface = null;
/*  918 */     this.methodPermissionsCache.clear();
/*      */
/*  923 */     this.invokeStats.resetStats();
/*  924 */     this.invokeStats = new InvocationStatistics();
/*  925 */     this.marshalledInvocationMapping.clear();
/*      */   }
View Full Code Here

TOP

Related Classes of org.jboss.invocation.InvocationStatistics

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.