Skip to content

Instantly share code, notes, and snippets.

@vvsevolodovich
Last active March 12, 2018 09:02
Show Gist options
  • Save vvsevolodovich/5cbebc29cfc8c9762a400ea9f3917507 to your computer and use it in GitHub Desktop.
Save vvsevolodovich/5cbebc29cfc8c9762a400ea9f3917507 to your computer and use it in GitHub Desktop.
App db init with posting an event
mBackground.execute(new Runnable() {
@Override
public void run() {
try {
initDatabaseInternal();
mBackground.post(new DatabaseLoadedEvent());
} catch (Exception e) {
Log.e("Failed to init db", e);
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment