Package org.glassfish.grizzly.monitoring
Interface MonitoringConfig<E>
-
- All Known Implementing Classes:
DefaultMonitoringConfig
public interface MonitoringConfig<E>General monitoring configuration interface.- Author:
- Alexey Stashok
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddProbes(E... probes)Add the monitoring probes, which will be notified about object's lifecycle events.voidclearProbes()Removes all the monitoring probes, which are registered on the object.ObjectcreateManagementObject()Create the JMXObject, which represents this object.E[]getProbes()Get the the monitoring probes, which are registered on the objet.booleanhasProbes()booleanremoveProbes(E... probes)Remove the monitoring probes.
-
-
-
Method Detail
-
addProbes
void addProbes(E... probes)
Add the monitoring probes, which will be notified about object's lifecycle events.- Parameters:
probes- the monitoring probes.
-
removeProbes
boolean removeProbes(E... probes)
Remove the monitoring probes.- Parameters:
probes- the monitoring probes.
-
getProbes
E[] getProbes()
Get the the monitoring probes, which are registered on the objet. Please note, it's not appropriate to modify the returned array's content. Please useaddProbes(Object[])andremoveProbes(Object[])instead.- Returns:
- the the monitoring probes, which are registered on the object.
-
hasProbes
boolean hasProbes()
-
clearProbes
void clearProbes()
Removes all the monitoring probes, which are registered on the object.
-
-