
io.amient.affinity.core.state.ObservableKeyValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
Library for building fast, scalable, fault-tolerant Data APIs based on Akka, ZooKeeper and Kafka.
The newest version!
package io.amient.affinity.core.state;
import java.util.Observable;
public class ObservableKeyValue extends Observable {
@Override
public void notifyObservers(Object arg) {
setChanged();
super.notifyObservers(arg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy