Skip to content

Instantly share code, notes, and snippets.

@PierceZ
Created February 11, 2017 22:05
Show Gist options
  • Save PierceZ/e34182bbf20badbf8d2aa1215f8c5cbf to your computer and use it in GitHub Desktop.
Save PierceZ/e34182bbf20badbf8d2aa1215f8c5cbf to your computer and use it in GitHub Desktop.
Example using the BusComponent.
//Subscribe to a subject
App.getBusComponent().getTopSubject().subscribe((message) -> {
if (mMessageView != null) {
mMessageView.setText(message);
}
});
//Send an item to subscribers of a subject
App.getBusComponent().getBottomSubject().onNext("Hello!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment