
nyla.solutions.global.patterns.observer.SubjectObserver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nyla.solutions.global Show documentation
Show all versions of nyla.solutions.global Show documentation
Nyla Solutions Global Java API provides support for basic application
utilities (application configuration, data encryption, debugger and text
processing).
The newest version!
package nyla.solutions.global.patterns.observer;
import nyla.solutions.global.data.Identifier;
/**
*
* SubjectObserver Provides an update interface to receive signal from subject
* @author Gregory Green
*
*/
public interface SubjectObserver extends Identifier
{
/**
*
* @param subject the subject where the update is generated
* @param data the data
*/
public void update(Subject subject, Object data);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy