Skip to content

Instantly share code, notes, and snippets.

@michalciolek
Created April 15, 2015 17:18
Show Gist options
  • Select an option

  • Save michalciolek/651e869c63247cc9dedc to your computer and use it in GitHub Desktop.

Select an option

Save michalciolek/651e869c63247cc9dedc to your computer and use it in GitHub Desktop.
Żądanie pobrania komentarzy.
public class CommentsRequest extends RetrofitSpiceRequest<Comment.List, ApiInterface> {
public CommentsRequest() {
super(Comment.List.class, ApiInterface.class);
}
@Override
public Comment.List loadDataFromNetwork() {
return getService().comments();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment