Skip to content

Instantly share code, notes, and snippets.

@hboregio
Created May 16, 2014 18:51
Show Gist options
  • Save hboregio/0b443aa28836d7201b30 to your computer and use it in GitHub Desktop.
Save hboregio/0b443aa28836d7201b30 to your computer and use it in GitHub Desktop.
private void fetchFeed() {
RestClient.getInstance().getUser(new ResultsListener<User>() {
@Override
public void onSuccess(String feed) {
Log.i("Feed: " + feed);
}
@Override
public void onFailure(Throwable e) {
Log.e("Unable to fetch feed.");
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment