00001 package org.gridlab.gat.monitoring;
00002
00003 import java.util.List;
00004
00005 import org.gridlab.gat.net.RemoteException;
00006
00007
00008
00009
00010
00011 public interface Monitorable {
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 public void addMetricListener(MetricListener metricListener, Metric metric)
00026 throws RemoteException;
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 public void removeMetricListener(MetricListener metricListener, Metric metric)
00040 throws RemoteException;
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051 public List getMetrics() throws RemoteException;
00052 }