Skip to content

Instantly share code, notes, and snippets.

@vvsevolodovich
Created March 12, 2018 09:05
Show Gist options
  • Save vvsevolodovich/afc935ddfe33d04eee34bee7e919446d to your computer and use it in GitHub Desktop.
Save vvsevolodovich/afc935ddfe33d04eee34bee7e919446d to your computer and use it in GitHub Desktop.
Background with posting event on UI
public void postEventOnUiThread(final Object event) {
mUiHandler.post(new Runnable() {
@Override
public void run() {
mEventBus.post(event);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment