Advertisement
Guest User

HttpRequestCallBack.java

a guest
Jan 28th, 2020
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. package com.megvii.meglive_still.demo;
  2.  
  3. /**
  4. * Created by zhangwenjun on 2018/6/29.
  5. */
  6.  
  7. public interface HttpRequestCallBack {
  8. void onSuccess(String responseBody);
  9.  
  10. void onFailure(int statusCode, byte[] responseBody);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement