Skip to content

Instantly share code, notes, and snippets.

@jeanPokou
Created November 10, 2018 01:23
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 jeanPokou/c7cd5bef410ba82b0774e307ad084188 to your computer and use it in GitHub Desktop.
Save jeanPokou/c7cd5bef410ba82b0774e307ad084188 to your computer and use it in GitHub Desktop.
Audience class for Java Observer Pattern
class Audience() {
private var message= Message("")
fun update(message: Message) {
this.message = message
print("Got a new message: ${message.text}\n")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment