01: /*---------------------------------------------------------------------------*\
02: | |
03: | Radar Networks, Inc. |
04: | http://www.radarnetworks.com |
05: | info@radarnetworks.com |
06: | |
07: | Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006 Radar Networks, Inc. |
08: | All Rights Reserved. |
09: | |
10: \*---------------------------------------------------------------------------*/
11:
12: package com.whirlycott.cache;
13:
14: /**
15: * MBean Interface for the <code>CacheDecorator</code>
16: *
17: * @author <a href="mailto:peter.royal@pobox.com">peter royal</a>
18: */
19: public interface CacheDecoratorMBean {
20:
21: long getQueriesPerSecond();
22:
23: int getSize();
24:
25: float getTotalHitrate();
26: }
|