本文整理汇总了Java中sun.jvmstat.monitor.event.HostListener类的典型用法代码示例。如果您正苦于以下问题:Java HostListener类的具体用法?Java HostListener怎么用?Java HostListener使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
HostListener类属于sun.jvmstat.monitor.event包,在下文中一共展示了HostListener类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addHostListener
import sun.jvmstat.monitor.event.HostListener; //导入依赖的package包/类
/**
* {@inheritDoc}.
* <p>
* Note - the <em>file:</em> protocol currenly does not support
* registration or notification of event listeners. This method
* silently ignores the add request.
*/
public void addHostListener(HostListener listener) {
// no HostListener support for 'file:' based VmIdentifiers
}
示例2: removeHostListener
import sun.jvmstat.monitor.event.HostListener; //导入依赖的package包/类
/**
* {@inheritDoc}.
* <p>
* Note - the <em>file:</em> protocol currenly does not support
* registration or notification of event listeners. This method
* silently ignores the remove request.
*/
public void removeHostListener(HostListener listener) {
// no HostListener support for 'file:' based VmIdentifiers
}
示例3: addHostListener
import sun.jvmstat.monitor.event.HostListener; //导入依赖的package包/类
/**
* Add a HostListener. The given listener is added to the list
* of HostListener objects to be notified of MonitoredHost related events.
*
* @param listener the HostListener to add.
* @throws MonitorException Thrown if monitoring errors occur.
*/
public abstract void addHostListener(HostListener listener)
throws MonitorException;
示例4: removeHostListener
import sun.jvmstat.monitor.event.HostListener; //导入依赖的package包/类
/**
* Remove a HostListener. The given listener is removed from the list
* of HostListener objects to be notified of MonitoredHost related events.
*
* @param listener the HostListener to add.
* @throws MonitorException Thrown if monitoring errors occur.
*/
public abstract void removeHostListener(HostListener listener)
throws MonitorException;