Skip to content

Instantly share code, notes, and snippets.

@hboregio
Created May 16, 2014 15:07
Show Gist options
  • Save hboregio/bf5246a5350cd296d2c5 to your computer and use it in GitHub Desktop.
Save hboregio/bf5246a5350cd296d2c5 to your computer and use it in GitHub Desktop.
ResultsListener
public interface ResultsListener<T> {
public void onSuccess(T result);
public void onFailure(Throwable e);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment