Skip to content

Instantly share code, notes, and snippets.

@jtikon
Created July 2, 2020 15:17
Show Gist options
  • Save jtikon/7a69fe48abcd59e7791e34c250c46502 to your computer and use it in GitHub Desktop.
Save jtikon/7a69fe48abcd59e7791e34c250c46502 to your computer and use it in GitHub Desktop.
interface IChannelQueryHandler {
void loadInitial(LoadCallback loadCallback);
void loadNext(LoadCallback loadCallback);
void loadPrevious(LoadCallback loadCallback);
interface LoadCallback {
void onResult(IChannel[] channels, int page);
void onError(String error);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment