Skip to content

Instantly share code, notes, and snippets.

@AgentKnopf
Last active December 10, 2015 07:50
Show Gist options
  • Save AgentKnopf/ab95ed146297d0a7e620 to your computer and use it in GitHub Desktop.
Save AgentKnopf/ab95ed146297d0a7e620 to your computer and use it in GitHub Desktop.
public static class SomeClass {
public void onEvent(String value) {
Log.i(TAG, value);
Eventbus.post(12);
Eventbus.post(true);
}
public void onEvent(Integer value) {
Log.i(TAG, String.valueOf(value));
}
public void onEvent(Boolean value) {
Log.i(TAG, String.valueOf(value));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment