程序包 weka.gui.beans
接口 ConnectionNotificationConsumer
public interface ConnectionNotificationConsumer
Interface for Beans that can receive (dis-)connection events generated when
(dis-)connecting data processing nodes in the Weka KnowledgeFlow.
This is useful, for example, for "intelligent" filters that are able to share
configuration information with preceding nodes in the processing chain.
- 版本:
- $Revision: 1.2 $
- 作者:
- Carsten Pohle (cp AT cpohle de)
-
方法概要
修饰符和类型方法说明void
connectionNotification
(String eventName, Object source) Notify this object that it has been registered as a listener with a source with respect to the supplied event name.void
disconnectionNotification
(String eventName, Object source) Notify this object that it has been deregistered as a listener with a source with respect to the supplied event name This method should be implementedsynchronized .
-
方法详细资料
-
connectionNotification
Notify this object that it has been registered as a listener with a source with respect to the supplied event name. This method should be implementedsynchronized .- 参数:
eventName
-source
- the source with which this object has been registered as a listener
-
disconnectionNotification
Notify this object that it has been deregistered as a listener with a source with respect to the supplied event name This method should be implementedsynchronized .- 参数:
eventName
- the eventsource
- the source with which this object has been registered as a listener
-