1 29 30 package com.caucho.management.server; 31 32 import com.caucho.jmx.Description; 33 34 42 @Description("Resin's backing store block manager") 43 public interface BlockManagerMXBean extends ManagedObjectMXBean { 44 45 48 @Description("The number of blocks in the block manager") 49 public long getBlockCapacity(); 50 51 55 58 @Description("The hit count is the number of block accesses found in" 59 + " the cache.") 60 public long getHitCountTotal(); 61 62 65 @Description("The hit count is the number of block accesses missing in" 66 + " the cache.") 67 public long getMissCountTotal(); 68 } 69 | Popular Tags |