1 23 24 package com.sun.ejb.containers.util.cache; 25 26 public interface MonitorableCache { 27 28 public int getMaxCacheSize(); 29 30 public int getCurrentSize(); 31 32 public int getResizeQuantity(); 33 34 public boolean isCacheOverflowAllowed(); 35 36 public int getIdleTimeoutInSeconds(); 37 38 public int getRemovalTimeoutInSeconds(); 39 40 public String getVictimSelectionPolicy(); 41 42 public int getCacheHits(); 43 44 public int getCacheMisses(); 45 46 public int getVictimCount(); 47 48 } 49 | Popular Tags |