org.reactfx.ProperObservable Maven / Gradle / Ivy
package org.reactfx;
import org.reactfx.util.NotificationAccumulator;
/**
* An {@linkplain Observable} that maintains a collection of registered
* observers and notifies them when a change occurs. This is unlike
* {@link ProxyObservable}, which registers observers with an underlying
* {@linkplain Observable}, and unlike {@link RigidObservable}, which does
* not produce any notifications.
* @param observer type accepted by this {@linkplain Observable}
* @param notification type produced by this {@linkplain Observable}
*/
public interface ProperObservable extends Observable {
void notifyObservers(T event);
NotificationAccumulator defaultNotificationAccumulator();
default int defaultHashCode() { return System.identityHashCode(this); }
default boolean defaultEquals(Object o) { return this == o; }
default String defaultToString() {
return getClass().getName() + '@' + Integer.toHexString(hashCode());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy