Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
FlowConstructStatsMBean |
|
| 1.0;1 |
1 | /* | |
2 | * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com | |
3 | * The software in this package is published under the terms of the CPAL v1.0 | |
4 | * license, a copy of which has been included with this distribution in the | |
5 | * LICENSE.txt file. | |
6 | */ | |
7 | package org.mule.module.management.mbean; | |
8 | ||
9 | ||
10 | /** | |
11 | * <code>FlowConstructStatsMBean</code> defines the management interface for a mule | |
12 | * managed flow. | |
13 | */ | |
14 | public interface FlowConstructStatsMBean | |
15 | { | |
16 | void clearStatistics(); | |
17 | ||
18 | long getAsyncEventsReceived(); | |
19 | ||
20 | long getSyncEventsReceived(); | |
21 | ||
22 | long getTotalEventsReceived(); | |
23 | ||
24 | long getProcessedEvents(); | |
25 | ||
26 | long getAverageProcessingTime(); | |
27 | ||
28 | long getMaxProcessingTime(); | |
29 | ||
30 | long getMinProcessingTime(); | |
31 | ||
32 | long getTotalProcessingTime(); | |
33 | ||
34 | long getFatalErrors(); | |
35 | ||
36 | long getExecutionErrors(); | |
37 | } |