Package com.sun.appserv.management.monitor

Examples of com.sun.appserv.management.monitor.BeanCacheMonitor


      {
        final Iterator  iter  = beanCacheMonitors.iterator();
       
        while ( iter.hasNext() )
        {
          final BeanCacheMonitor  m  = (BeanCacheMonitor)iter.next();
          final EJBCacheStats    s  = m.getEJBCacheStats();
         
          // verify that we can get each Statistic; there was a problem at one time
          final BoundedRangeStatistic b1  = s.getCacheMisses();
          final BoundedRangeStatistic b2  = s.getCacheHits();
          final BoundedRangeStatistic b3  = s.getBeansInCache();
View Full Code Here

TOP

Related Classes of com.sun.appserv.management.monitor.BeanCacheMonitor

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.