Skip to content

Instantly share code, notes, and snippets.

@maxov
Forked from Lunaphied/gist:561c512b4408a72376d2
Last active August 29, 2015 14:10
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 maxov/e5d0baa9203be0b96faa to your computer and use it in GitHub Desktop.
Save maxov/e5d0baa9203be0b96faa to your computer and use it in GitHub Desktop.
public interface Sender {
String getName()
void say(Message message);
}
public interface Reciever {
void send(Message message);
void onMessage(Sender sender, Message message) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment