Created
July 16, 2015 13:01
-
-
Save johnboker/cd5033dbdd2d3a8a5d96 to your computer and use it in GitHub Desktop.
IWebServiceCallback.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IWebServiceCallback<T> { | |
void onResponse(T response); | |
void onErrorResponse(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment