01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.management.exposed;
05:
06: import javax.management.openmbean.OpenDataException;
07: import javax.management.openmbean.TabularData;
08:
09: import com.tc.management.TerracottaMBean;
10:
11: public interface SessionsProductMBean extends TerracottaMBean {
12:
13: int getRequestCount();
14:
15: int getRequestCountPerSecond();
16:
17: int getSessionsCreatedPerMinute();
18:
19: int getSessionsExpiredPerMinute();
20:
21: int getSessionWritePercentage();
22:
23: TabularData getTop10ClassesByObjectCreationCount()
24: throws OpenDataException;
25:
26: void expireSession(String sessionId);
27:
28: }
|