Skip to content

Instantly share code, notes, and snippets.

@seyedsahil
Created March 8, 2020 17:29
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 seyedsahil/c95887a5af5d6a524078e8b5b23661b9 to your computer and use it in GitHub Desktop.
Save seyedsahil/c95887a5af5d6a524078e8b5b23661b9 to your computer and use it in GitHub Desktop.
Creating an Observable instance
package org.sydlabz.mvc;
import java.util.Observable;
public class MessageQueue extends Observable {
public MessageQueue() {
// Initialize the message queue.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment