View Javadoc

1   /*
2    * $Id: ComponentStatsMBean.java 7976 2007-08-21 14:26:13Z dirk.olmes $
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 CPAL v1.0
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: 7976 $
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  }