Skip to content

Instantly share code, notes, and snippets.

@HarinTrivedi
Created January 20, 2018 05:25
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/3680fb59a6873b9135bb52828c53fae1 to your computer and use it in GitHub Desktop.
Save HarinTrivedi/3680fb59a6873b9135bb52828c53fae1 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 IFirebaseCallbackListener<T> {
void childAdded(T trip);
void childChanged(T trip);
void childRemoved(T trip);
void onFailure(Throwable t);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment