Back to project page kickflip-android-sdk.
The source code is released under:
Apache License
If you think the Android project kickflip-android-sdk 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 io.kickflip.sdk.api; // w w w . j av a 2s . c o m import io.kickflip.sdk.api.json.Response; import io.kickflip.sdk.exception.KickflipException; /** * Callback interface for Kickflip API calls * */ public interface KickflipCallback { public void onSuccess(Response response); public void onError(KickflipException error); }