This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// From https://www.quora.com/What-are-callback-methods-in-Java | |
// Java program to illustrate synchronous callback | |
interface OnGeekEventListener { | |
// this can be any type of method | |
void onGeekEvent(); | |
} | |
class B { | |
private OnGeekEventListener mListener; // listener field |
NewerOlder