Back to project page Pipe.
The source code is released under:
MIT License
If you think the Android project Pipe 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.westudio.android.sdk.http; import com.westudio.android.sdk.exceptions.ServiceClientError; public interface ServiceCallback<R> { void onResponse(R response); void onErrorResponse(ServiceClientError error); }