diff src/net/scatterspace/blitz/jmx/iface/IOMXBean.java @ 0:e59e6471ce44

Initial version of a Blitz colocated agent to provide JMX MXBeans access to its statistics
author Dominic Cleal <dominic@computerkb.co.uk>
date Thu, 11 Dec 2008 00:49:28 +0000
parents
children 1850f751d9de
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/net/scatterspace/blitz/jmx/iface/IOMXBean.java	Thu Dec 11 00:49:28 2008 +0000
@@ -0,0 +1,16 @@
+package net.scatterspace.blitz.jmx.iface;
+
+import java.rmi.RemoteException;
+
+public interface IOMXBean
+{
+    
+    public int getQueueSize() throws RemoteException;
+    
+    public double getInOutRatio() throws RemoteException;
+    
+    public double getTimePerIn() throws RemoteException;
+    
+    public double getTimePerOut() throws RemoteException;
+    
+}
\ No newline at end of file