Back to project page cheepcheep.
The source code is released under:
Apache License
If you think the Android project cheepcheep 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 org.tarrio.cheepcheep.task; /** * A callback interface for code to run after running an asynchronous task. */ public interface TaskCallback { void onSuccess(AsyncTwitterTask task); void onFailure(int statusCode, AsyncTwitterTask task); }