Package weka.gui.beans
Interface 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.
- Version:
- $Revision: 8034 $
- Author:
- Carsten Pohle (cp AT cpohle de)
-
Method Summary
Modifier and TypeMethodDescriptionvoid
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 .
-
Method Details
-
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 .- Parameters:
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 .- Parameters:
eventName
- the eventsource
- the source with which this object has been registered as a listener
-