Coverage Report - org.mule.module.management.mbean.ServiceStatsMBean
 
Classes in this File Line Coverage Branch Coverage Complexity
ServiceStatsMBean
N/A
N/A
1
 
 1  
 /*
 2  
  * $Id: ServiceStatsMBean.java 11234 2008-03-06 23:44:34Z tcarlson $
 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.module.management.mbean;
 12  
 
 13  
 /**
 14  
  * <code>ServiceStatsMBean</code> TODO
 15  
  */
 16  
 public interface ServiceStatsMBean
 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  
 }