Skip to content

Instantly share code, notes, and snippets.

@vishalhalani
Created January 2, 2019 06:07
Show Gist options
  • Save vishalhalani/7e4d039644e1833be917e4c7d09ef36e to your computer and use it in GitHub Desktop.
Save vishalhalani/7e4d039644e1833be917e4c7d09ef36e to your computer and use it in GitHub Desktop.
Call back handler interface
public interface OnWebAPIResponseListener {
void onCallComplete(BaseResponse baseResponse, int requestCode);
// void onCallComplete(List<?> obj, int requestCode);
void onCallError(ErrorResponse errorModel, int requestCode);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment