Package net.sf.ehcache.management.sampled

Examples of net.sf.ehcache.management.sampled.SampledCacheManager


   *
   * @throws javax.management.NotCompliantMBeanException
   */
  public EhcacheStatsImpl(CacheManager manager) throws NotCompliantMBeanException {
    super( EhcacheStats.class );
    this.sampledCacheManager = new SampledCacheManager( manager );
    this.cacheManager = manager;
  }
View Full Code Here


   *
   * @throws javax.management.NotCompliantMBeanException
   */
  public EhcacheStatsImpl(CacheManager manager) throws NotCompliantMBeanException {
    super( EhcacheStats.class );
    this.sampledCacheManager = new SampledCacheManager( manager );
    this.cacheManager = manager;
  }
View Full Code Here

   * @param manager The {@link CacheManager} to expose stats for
   * @throws javax.management.NotCompliantMBeanException should registering the MBean fail
   */
  public EhcacheStatsImpl(CacheManager manager) throws NotCompliantMBeanException {
    super( EhcacheStats.class );
    this.sampledCacheManager = new SampledCacheManager( manager );
    this.cacheManager = manager;
  }
View Full Code Here

     * Constructor accepting the backing {@link CacheManager}
     * @throws NotCompliantMBeanException
     */
    public EhcacheStatsImpl(CacheManager manager) throws NotCompliantMBeanException {
        super(EhcacheStats.class);
        this.sampledCacheManager = new SampledCacheManager(manager);
        this.cacheManager = manager;
    }
View Full Code Here

   * @param manager The {@link CacheManager} to expose stats for
   * @throws javax.management.NotCompliantMBeanException should registering the MBean fail
   */
  public EhcacheStatsImpl(CacheManager manager) throws NotCompliantMBeanException {
    super( EhcacheStats.class );
    this.sampledCacheManager = new SampledCacheManager( manager );
    this.cacheManager = manager;
  }
View Full Code Here

TOP

Related Classes of net.sf.ehcache.management.sampled.SampledCacheManager

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.