View Javadoc

1   /*
2    * $Id: ComponentStatsMBean.java 7963 2007-08-21 08:53:15Z 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  public interface ComponentStatsMBean
17  {
18  
19      void clearStatistics();
20  
21      long getAverageExecutionTime();
22  
23      long getAverageQueueSize();
24  
25      long getMaxQueueSize();
26  
27      long getMaxExecutionTime();
28  
29      long getFatalErrors();
30  
31      long getMinExecutionTime();
32  
33      long getTotalExecutionTime();
34  
35      long getQueuedEvents();
36  
37      long getAsyncEventsReceived();
38  
39      long getSyncEventsReceived();
40  
41      long getReplyToEventsSent();
42  
43      long getSyncEventsSent();
44  
45      long getAsyncEventsSent();
46  
47      long getTotalEventsSent();
48  
49      long getTotalEventsReceived();
50  
51      long getExecutedEvents();
52  
53      long getExecutionErrors();
54  }