Skip to content

Instantly share code, notes, and snippets.

@srayhunter
Created December 30, 2015 05:16
Show Gist options
  • Save srayhunter/a9b725e37e580b1efe05 to your computer and use it in GitHub Desktop.
Save srayhunter/a9b725e37e580b1efe05 to your computer and use it in GitHub Desktop.
Retrofit Callback String Example
// notice the callback here
git.getFeed(new Callback<String>() {
	@Override
	public void success(String result, Response response) {
		Log.d("success" , "Data received: " + result);
	}
	
	@Override
	public void failure(RetrofitError error) {
		Log.d("fail" , "Fail to get data from server");
	}
}); 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment