Package de.bsvrz.dav.daf.main.config
Interface ConfigurationCommunicationChangeListener
-
public interface ConfigurationCommunicationChangeListener
Schnittstelle für Änderungen des Kommunikationszustandes zwischen Konfigurationen, auf die sich eine ApplikationConfigurationCommunicationInterface.addConfigurationCommunicationChangeListener(ConfigurationCommunicationChangeListener)
anmelden undConfigurationCommunicationInterface.removeConfigurationCommunicationChangeListener(ConfigurationCommunicationChangeListener)
abmelden kann.
-
-
Method Summary
Modifier and Type Method Description void
configurationCommunicationChange(ConfigurationCommunicationInterface object, boolean configComStatus)
Methode, die nach Änderung des Kommunikationszustandes aufgerufen wird.
-
-
-
Method Detail
-
configurationCommunicationChange
void configurationCommunicationChange(ConfigurationCommunicationInterface object, boolean configComStatus)
Methode, die nach Änderung des Kommunikationszustandes aufgerufen wird. Die Methode ist seitens der Applikation zu implementieren.- Parameters:
object
- Objekt (MutableSet
oderDynamicObject
) zu dessen verwaltenden Konfiguration sich der Kommunikationszustand geändert hatconfigComStatus
- der aktuelle Kommunikationszustand. True bedeutet die Kommunikation steht, false zeigt eine Unterbrechung der Kommunikation an
-
-