All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.amient.affinity.core.state.ObservableKeyValue Maven / Gradle / Ivy

Go to download

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