[Xorio-commit] SF.net SVN: xorio: [405] trunk/src/java/com/klaiber/xorio/util/monitor/ PerformanceM
Status: Alpha
Brought to you by:
sklaiber
|
From: <skl...@us...> - 2007-01-03 14:23:40
|
Revision: 405
http://svn.sourceforge.net/xorio/?rev=405&view=rev
Author: sklaiber
Date: 2007-01-03 06:23:40 -0800 (Wed, 03 Jan 2007)
Log Message:
-----------
Inital Version
* Interface for the Performance Monitor Management Component
Added Paths:
-----------
trunk/src/java/com/klaiber/xorio/util/monitor/PerformanceMonitor.java
Added: trunk/src/java/com/klaiber/xorio/util/monitor/PerformanceMonitor.java
===================================================================
--- trunk/src/java/com/klaiber/xorio/util/monitor/PerformanceMonitor.java (rev 0)
+++ trunk/src/java/com/klaiber/xorio/util/monitor/PerformanceMonitor.java 2007-01-03 14:23:40 UTC (rev 405)
@@ -0,0 +1,14 @@
+package com.klaiber.xorio.util.monitor;
+
+import java.util.Set;
+
+public interface PerformanceMonitor {
+
+ public Set getItemNames();
+
+ public Set getItems();
+
+ public PerformaceMonitorItem getItem(String itemName);
+
+ public void addMeasurement(String itemName, long duration);
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|