Skip to content

Instantly share code, notes, and snippets.

@yusufcakal
Created October 12, 2017 08:25
Show Gist options
  • Save yusufcakal/8298241205649ade15f202b3f9beb73c to your computer and use it in GitHub Desktop.
Save yusufcakal/8298241205649ade15f202b3f9beb73c to your computer and use it in GitHub Desktop.
Medium Post
public interface Observable {
void addObserver(Observer observer);
void removeObserver(Observer observer);
void notifyObserver();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment