Skip to content

Instantly share code, notes, and snippets.

@anjanashankar9
Last active December 13, 2020 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anjanashankar9/5382233db34a6bdc912c6860256c1485 to your computer and use it in GitHub Desktop.
Save anjanashankar9/5382233db34a6bdc912c6860256c1485 to your computer and use it in GitHub Desktop.
Observer Pattern- ConcreteObserver2
public class ConcreteObserver2 implements Observer {
@Override
public void update(String message) {
System.out.println("Observer 2 received message - "+message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment