Back to project page volley.
The source code is released under:
Apache License
If you think the Android project volley listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.android.volley.ext; public interface HttpCallback { public void onStart(); public void onFinish(); public void onResult(String string); public void onError(Exception e); public void onCancelled(); public void onLoading(long count, long current); }