Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ServiceStatsMBean |
|
| 1.0;1 |
1 | /* | |
2 | * $Id: ServiceStatsMBean.java 20288 2010-11-22 01:19:54Z mike.schilling $ | |
3 | * -------------------------------------------------------------------------------------- | |
4 | * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.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.module.management.mbean; | |
12 | ||
13 | /** | |
14 | * <code>ServiceStatsMBean</code> TODO | |
15 | */ | |
16 | public interface ServiceStatsMBean extends FlowConstructStatsMBean | |
17 | { | |
18 | ||
19 | long getAverageExecutionTime(); | |
20 | ||
21 | long getAverageQueueSize(); | |
22 | ||
23 | long getMaxQueueSize(); | |
24 | ||
25 | long getMaxExecutionTime(); | |
26 | ||
27 | long getMinExecutionTime(); | |
28 | ||
29 | long getTotalExecutionTime(); | |
30 | ||
31 | long getQueuedEvents(); | |
32 | ||
33 | long getReplyToEventsSent(); | |
34 | ||
35 | long getSyncEventsSent(); | |
36 | ||
37 | long getAsyncEventsSent(); | |
38 | ||
39 | long getTotalEventsSent(); | |
40 | ||
41 | long getExecutedEvents(); | |
42 | ||
43 | } |