KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mule > management > mbeans > ComponentStatsMBean


1 /*
2  * $Id: ComponentStatsMBean.java 3798 2006-11-04 04:07:14Z aperepel $
3  * --------------------------------------------------------------------------------------
4  * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
5  *
6  * The software in this package is published under the terms of the MuleSource MPL
7  * license, a copy of which has been included with this distribution in the
8  * LICENSE.txt file.
9  */

10
11 package org.mule.management.mbeans;
12
13 /**
14  * <code>ComponentStatsMBean</code> TODO
15  *
16  * @author <a HREF="mailto:ross.mason@symphonysoft.com">Ross Mason</a>
17  * @author Guillaume Nodet
18  * @version $Revision: 3798 $
19  */

20 public interface ComponentStatsMBean
21 {
22
23     void clearStatistics();
24
25     long getAverageExecutionTime();
26
27     long getAverageQueueSize();
28
29     long getMaxQueueSize();
30
31     long getMaxExecutionTime();
32
33     long getFatalErrors();
34
35     long getMinExecutionTime();
36
37     long getTotalExecutionTime();
38
39     long getQueuedEvents();
40
41     long getAsyncEventsReceived();
42
43     long getSyncEventsReceived();
44
45     long getReplyToEventsSent();
46
47     long getSyncEventsSent();
48
49     long getAsyncEventsSent();
50
51     long getTotalEventsSent();
52
53     long getTotalEventsReceived();
54
55     long getExecutedEvents();
56
57     long getExecutionErrors();
58 }
59
Popular Tags