Skip to content

Instantly share code, notes, and snippets.

@HarinTrivedi
Created January 20, 2018 05:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HarinTrivedi/36333c42cf4cf9e44ecfd2c71dcbf618 to your computer and use it in GitHub Desktop.
Save HarinTrivedi/36333c42cf4cf9e44ecfd2c71dcbf618 to your computer and use it in GitHub Desktop.
package com.hlabexamples.commonmvp.base.mvp.callback;
/**
* Created by H.T. on 01/12/17.
*/
public interface ICallbackListener<T> {
void onSuccess(T data);
void onFailure(Throwable t);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment